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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: hidden;
    background: #0a0a0a;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(236, 72, 153, 0.3);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

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

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ec4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #ec4899;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(236, 72, 153, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d1b69 100%);
    color: white;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #db2777, #ec4899);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.5);
    border-color: rgba(236, 72, 153, 0.6);
}

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

.btn-secondary:hover {
    background: white;
    color: #6366f1;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(236, 72, 153, 0.3);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.2);
}

.floating-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.6));
    transition: all 0.3s ease;
}

.floating-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.8));
}

.floating-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.floating-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stat {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.about, .services, .contact {
    padding: 5rem 0;
}

.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(236, 72, 153, 0.2);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    transition: all 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.7));
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
}

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

.feature {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ec4899;
}

.feature p {
    color: #cbd5e1;
}

/* Robot Classes Section */
.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    transition: all 0.3s ease;
}

.services-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.7));
}

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

.service-card {
    background: rgba(26, 26, 26, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ec4899;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Featured Robots Section */
.robots {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 5rem 0;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.robots-header {
    text-align: center;
    margin-bottom: 3rem;
}

.robots-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    transition: all 0.3s ease;
}

.robots-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.7));
}

.robots .section-title {
    color: #ec4899;
}

.robots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.robot-card {
    background: rgba(236, 72, 153, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.robot-card:hover {
    transform: translateY(-10px);
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
}

.robot-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.robot-image i {
    font-size: 4rem;
    color: #ec4899;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

.robot-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
}

.robot-class {
    font-size: 1.1rem;
    color: #f472b6;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.robot-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.robot-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
}

.spec i {
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    transition: all 0.3s ease;
}

.contact-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.7));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ec4899;
    width: 40px;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

.contact-form {
    background: rgba(26, 26, 26, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(10, 10, 10, 0.8);
    color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(236, 72, 153, 0.3);
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.6));
    transform: scale(1.05);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ec4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.4);
}

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

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

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

.footer-section ul li a:hover {
    color: #ec4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(236, 72, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.social-links a:hover {
    background: #ec4899;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(236, 72, 153, 0.2);
        padding: 2rem 0;
        border-top: 1px solid rgba(236, 72, 153, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .robots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .floating-logo {
        width: 60px;
        height: 60px;
    }
    
    .about-logo,
    .services-logo,
    .robots-logo,
    .contact-logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 70px;
}

/* Additional animations */
.service-card,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

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

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

/* Cyberpunk Glow Effects */
@keyframes neonGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(236, 72, 153, 0.5), 0 0 10px rgba(236, 72, 153, 0.3);
    }
    50% { 
        text-shadow: 0 0 10px rgba(236, 72, 153, 0.8), 0 0 20px rgba(236, 72, 153, 0.5);
    }
}

.hero-title {
    animation: neonGlow 3s ease-in-out infinite;
}

/* Scanline effect for cyberpunk feel */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(236, 72, 153, 0.03) 2px,
        rgba(236, 72, 153, 0.03) 4px
    );
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}
