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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    min-height: 100vh;
}

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

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

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.schedule-btn {
    background: white;
    color: #8B5CF6;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.schedule-btn:hover {
    transform: translateY(-2px);
}

.phone-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 120px 0 80px;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-cta {
    background: white;
    color: #8B5CF6;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

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

.hero-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Mouse Logo */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mouse-logo {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.mouse-ears {
    display: flex;
    justify-content: space-between;
    width: 200px;
    margin-bottom: -20px;
}

.ear {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #ff1493, #8b0040);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.mouse-head {
    width: 150px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #ff1493, #8b0040);
    border-radius: 50% 50% 60% 60%;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    margin: 0 auto;
}

.eye {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 35px;
}

.left-eye {
    left: 35px;
}

.right-eye {
    right: 35px;
}

.nose {
    width: 8px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

.whisker-group {
    position: absolute;
    top: 60px;
}

.left-whiskers {
    left: -30px;
}

.right-whiskers {
    right: -30px;
}

.whisker {
    width: 25px;
    height: 2px;
    background: white;
    margin: 4px 0;
    border-radius: 1px;
    opacity: 0.8;
}

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

/* Services Section */
.services {
    background: white;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #A855F7;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.service-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.service-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

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

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    padding: 80px 0;
    color: white;
}

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

.why-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.why-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.why-image-single {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.why-image-single:hover {
    transform: scale(1.05);
}

.why-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Founders Section */
.founders {
    background: white;
    padding: 80px 0;
}

.founders h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B5CF6;
    margin-bottom: 3rem;
}

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

.founder-card {
    text-align: center;
    padding: 2rem;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border: 4px solid #8B5CF6;
}

.founder-card h3 {
    font-size: 1.5rem;
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.founder-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
    padding: 80px 0;
    color: white;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #8B5CF6;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        max-width: none;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .why-images {
        justify-content: center;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .services-grid,
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .mouse-graphic {
        font-size: 4rem;
    }
    
    .service-card,
    .founder-card {
        padding: 1.5rem;
    }
}