/* Ultra Minimalistic Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #181717;
    background-color: #EDEBDD;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #810100;
    color: #EDEBDD;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #630000;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(129, 1, 0, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #EDEBDD;
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #181717;
    letter-spacing: -0.02em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    background-color: rgba(237, 235, 221, 0.8);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(24, 23, 23, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: #181717;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: #810100;
    color: #EDEBDD;
    box-shadow: 0 2px 8px rgba(129, 1, 0, 0.2);
}

.lang-btn:hover:not(.active) {
    color: #630000;
    background-color: rgba(237, 235, 221, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDEBDD;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #181717;
    line-height: 1.1;
}

.highlight {
    color: #810100;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #181717;
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background-color: #EDEBDD;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.service-card {
    text-align: center;
    padding: 4rem 2rem;
    background-color: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #810100;
    transition: width 0.3s ease;
}

.service-card:hover::after {
    width: 60px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    color: #810100;
    box-shadow: none;
}

.service-card h3 {
    color: #181717;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.service-card p {
    color: #181717;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.7;
    font-weight: 400;
}

/* Hero Stats */
.hero-stats {
    font-size: 1rem;
    color: #181717;
    margin-bottom: 4rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.8;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #181717;
    font-weight: 300;
    font-size: 2rem;
}

/* Expertise Section */
.expertise {
    padding: 8rem 0;
    background-color: #EDEBDD;
}

.expertise-content {
    text-align: center;
}

.expertise-content h2 {
    color: #181717;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.logos-section {
    margin-top: 4rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo-placeholder {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(24, 23, 23, 0.05);
    border-radius: 8px;
    color: #181717;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Why Choose Us Section */
.why-choose {
    padding: 8rem 0;
    background-color: #EDEBDD;
}

.why-choose-content {
    text-align: center;
}

.why-choose-content h2 {
    color: #181717;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.strength-item h3 {
    color: #181717;
    font-weight: 400;
    font-size: 1.2rem;
}

.testimonials-carousel {
    margin: 4rem 0;
    padding: 2rem;
    background-color: rgba(24, 23, 23, 0.05);
    border-radius: 12px;
}

.testimonial-item p {
    color: #181717;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-item span {
    color: #181717;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Certificates Section */
.certificates {
    padding: 8rem 0;
    background-color: #EDEBDD;
}

.certificates-content {
    text-align: center;
}

.certificates-content h2 {
    color: #181717;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.certificates-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-placeholder {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(24, 23, 23, 0.05);
    border-radius: 8px;
    color: #181717;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Links */
.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: rgba(24, 23, 23, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: #181717;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-link:hover {
    background-color: rgba(24, 23, 23, 0.1);
    border-color: #810100;
    transform: translateY(-2px);
}


.contact-icon {
    color: #810100;
    transition: all 0.3s ease;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #181717;
}

.contact-info p {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
}

.contact-link.whatsapp:hover .contact-icon {
    color: #25D366;
    transform: scale(1.1);
}

.contact-link.instagram:hover .contact-icon {
    color: #E4405F;
    transform: scale(1.1);
}

/* Footer Updates */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    color: #181717;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #181717;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #810100;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #181717;
    margin-bottom: 3rem;
    font-weight: 300;
}

.about-text p {
    color: #181717;
    font-size: 1.1rem;
    margin-bottom: 5rem;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 400;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: #810100;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #181717;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #EDEBDD;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    color: #181717;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-content p {
    color: #181717;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    font-weight: 400;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-label {
    display: block;
    color: #181717;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: #181717;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #810100;
}

/* Footer */
.footer {
    background-color: #EDEBDD;
    padding: 4rem 0;
    border-top: 1px solid rgba(24, 23, 23, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-copyright p {
    color: #181717;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 1.5rem 2rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services {
        padding: 6rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-card {
        padding: 3rem 1rem;
    }
    
    .about {
        padding: 6rem 0;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contact {
        padding: 6rem 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    
    .strengths {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .certificates-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-link {
        padding: 1.5rem;
    }
    
    .contact-icon {
        /* Removed margin-right for centered design */
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
.btn:focus,
.lang-btn:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}
