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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #059669;
}

.btn-primary {
    padding: 10px 24px;
    background: #059669;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #374151;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%), 
                url('/biovera.jpg') no-repeat center right / cover;
    color: #000;
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #d1fae5;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #065f46;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
}

.hero h1 .highlight {
    color: #059669;
}

.hero p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.8;
}

.button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-secondary {
    padding: 16px 32px;
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: #6b7280;
}

/* Sections */
section {
    padding: 96px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .badge {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #d1fae5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #059669;
    font-size: 20px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1fae5;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
}

.service-features i {
    color: #059669;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: white;
    margin-top: 64px;
}

.cta-banner h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background: white;
    color: #059669;
}

.cta-banner .btn-primary:hover {
    background: #f9fafb;
}

/* Laboratory Section */
.lab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.lab-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.lab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lab-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.lab-card:hover img {
    transform: scale(1.1);
}

.lab-card-content {
    background: white;
    padding: 24px;
}

.lab-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lab-card-content p {
    color: #6b7280;
}

.lab-card-image {
    transition: transform 0.5s;
}

.lab-card:hover .lab-card-image {
    transform: scale(1.1);
}

.capacity-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    padding: 48px;
}

.capacity-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

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

.capacity-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #059669;
    font-size: 40px;
}

.capacity-item h4 {
    font-size: 32px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 8px;
}

.capacity-item p {
    color: #374151;
    font-weight: 500;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.certificate-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.certificate-card i {
    font-size: 32px;
    color: #059669;
    margin-bottom: 12px;
}

.certificate-card h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.certificate-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.contact-info {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #059669;
    font-size: 20px;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #6b7280;
}

.visit-card {
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 16px;
    padding: 32px;
    color: white;
}

.visit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.visit-card p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.visit-info {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.char-count {
    text-align: right;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Footer */
footer {
    background: #01001c;
    color: #d1d5db;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: #059669;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.footer-logo h3 {
    color: white;
    font-size: 20px;
}

.footer-logo p {
    font-size: 12px;
    color: #9ca3af;
}

.footer-about p {
    color: #9ca3af;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #059669;
    color: white;
}

.footer-links h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #10b981;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .capacity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .stats,
    .services-grid,
    .lab-grid,
    .capacity-grid,
    .certificates-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .button-group {
        flex-direction: column;
    }

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Placeholder images */
.placeholder-img {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 48px;
}