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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent horizontal scroll on mobile */
.hero-section,
.animation-view,
.form-view,
.products-view {
    overflow-x: hidden;
}

.hero-section {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Left Content Panel */
.content-panel {
    width: 45%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    position: relative;
    z-index: 10;
}

.content-panel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.brand-section {
    margin-bottom: 60px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.brand-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
}

.brand-text {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    opacity: 0.8;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.capabilities-list {
    margin-bottom: 50px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.capability-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.capability-icon {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.trust-indicators {
    display: flex;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.trust-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Right Animation Panel */
.animation-panel {
    flex: 1;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(15, 15, 15, 0.8), #000000);
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Project Category Display */
.project-category-display {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.category-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #667eea;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.category-label {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    transition: all 0.5s ease;
}

.category-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: all 0.5s ease;
}

/* Phase Indicator */
.phase-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.phase-dots {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: center;
}

.phase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.phase-dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

.phase-labels {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.phase-label-item {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.phase-label-item.active {
    color: #667eea;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-panel {
        width: 50%;
        padding: 40px 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablet and Mobile Base */
@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        overflow: hidden;
    }
    
    .content-panel {
        width: 100%;
        padding: 40px 30px;
        min-height: auto;
    }
    
    .content-panel::after {
        display: none;
    }
    
    .animation-panel {
        width: 100%;
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .capabilities-grid {
        margin-bottom: 35px;
    }
    
    .capability-item {
        margin-bottom: 15px;
    }
    
    .project-category-display {
        bottom: 80px;
        padding: 20px;
        max-width: 90%;
    }
    
    .category-label {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .phase-indicator {
        bottom: 20px;
    }
    
    .trust-indicators {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .trust-item {
        flex: 1 1 45%;
        min-width: 120px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Devices */
@media (max-width: 640px) {
    .content-panel {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .capability-item {
        font-size: 0.95rem;
    }
    
    /* Show only first 4 capabilities on mobile */
    .capability-item:nth-child(n+5) {
        display: none;
    }
    
    .animation-panel {
        height: 30vh;
        min-height: 250px;
    }
    
    .project-category-display {
        bottom: 50px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .category-label {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
    
    .phase-labels {
        display: none;
    }
    
    /* Form and Products mobile */
    .form-view,
    .products-view {
        padding: 20px;
    }
    
    .form-content {
        padding-top: 60px;
    }
    
    .products-content {
        padding-top: 70px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .content-panel {
        padding: 25px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    /* Hide capabilities on small mobile to reduce clutter */
    .capabilities-grid {
        display: none;
    }
    
    .hero-cta {
        margin-bottom: 20px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Show only key trust indicators */
    .trust-indicators {
        justify-content: center;
        gap: 20px;
    }
    
    .trust-item {
        flex: 0 1 auto;
    }
    
    .trust-item:nth-child(n+3) {
        display: none; /* Hide extra trust items on small screens */
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    
    /* Animation panel adjustments */
    .animation-panel {
        height: 25vh;
        min-height: 200px;
    }
    
    /* Simplify animation display text */
    .project-category-display {
        bottom: 40px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .category-label {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }
    
    .category-description {
        display: none; /* Hide description on small mobile */
    }
    
    .phase-indicator {
        padding: 8px;
    }
    
    .phase-dots {
        gap: 6px;
    }
    
    .phase-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Form mobile optimizations */
    .back-button {
        top: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .form-fields {
        gap: 12px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .form-submit {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    /* Products mobile */
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 0.95rem;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .product-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* View Container Styles */
.animation-view,
.form-view,
.products-view,
.about-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.form-view,
.products-view,
.about-view {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    overflow-y: auto;
}

/* Back Button */
.back-button {
    position: fixed;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.back-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}

/* Form Content in Animation Panel */
.form-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.05rem;
    padding: 18px 24px;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input:hover,
.form-textarea:hover,
.form-input:focus,
.form-textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.form-submit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.form-submit:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
}

.form-submit:active {
    transform: scale(0.98);
}

.submit-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(3px);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

.form-features {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

/* Loading state */
.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

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

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .form-fields {
        gap: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .form-submit {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .form-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}

/* Products View Styles */
.products-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    padding-top: 60px;
}

.products-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.products-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-tag {
    background: rgba(0, 123, 255, 0.2);
    border: 1px solid rgba(0, 123, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-cta {
    color: #0056b3;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .products-content {
        padding-top: 80px;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .product-card {
        padding: 30px;
    }
    
    .back-button {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Touch-friendly button states */
    button:active,
    .cta-primary:active,
    .cta-secondary:active,
    .form-submit:active,
    .back-button:active {
        transform: scale(0.98);
    }
    
    /* Ensure inputs are large enough for touch */
    input,
    textarea,
    button {
        min-height: 44px;
    }
}

/* Mobile Contact Form Fullscreen */
.mobile-contact-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-back-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-back-button:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

.mobile-form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.mobile-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.mobile-contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    text-align: center;
}

.mobile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-form-input,
.mobile-form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 18px 20px;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.mobile-form-input:focus,
.mobile-form-textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

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

.mobile-form-submit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mobile-form-submit:active {
    transform: scale(0.98);
}

.mobile-form-submit.loading {
    position: relative;
    color: transparent;
}

.mobile-form-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

.mobile-form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    display: none;
}

.mobile-form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.mobile-form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Mobile Products View */
.mobile-products-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-products-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding-top: 60px;
}

.mobile-products-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.mobile-product-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.mobile-product-card:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-product-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-product-icon {
    font-size: 2.5rem;
}

.mobile-product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.mobile-product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.mobile-product-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    display: flex;
    align-items: center;
}

@media (max-width: 480px) {
    .mobile-products-title {
        font-size: 2rem;
    }
    
    .mobile-product-name {
        font-size: 1.3rem;
    }
    
    .mobile-product-description {
        font-size: 0.95rem;
    }
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    width: 100%;
    padding-top: 120px;
}

.mission-section {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.mission-statement {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mission-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.team-section {
    margin-top: 60px;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.member-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.member-title {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-bio {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Mobile About View */
.mobile-about-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding-top: 60px;
}

.mobile-about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.mobile-mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.mobile-mission-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.mobile-team-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.mobile-team-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-member-info {
    flex: 1;
}

.mobile-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.mobile-member-title {
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        padding-top: 140px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .mission-statement {
        font-size: 1.4rem;
    }
    
    .mission-description {
        font-size: 1rem;
    }
    
    .team-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-image-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-title {
        font-size: 1rem;
    }
    
    .member-bio {
        font-size: 0.95rem;
    }
}