/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0B0B;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #6CFF8D;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #B0B0B0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: rgba(11, 11, 11, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
}

.logo span {
    color: #6CFF8D;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6CFF8D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6CFF8D;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #6CFF8D;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #6CFF8D;
    color: #0B0B0B;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 255, 141, 0.3);
}

.cta-button:hover {
    background-color: #5CE67D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 255, 141, 0.4);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
}

.shape {
    position: absolute;
    border-radius: 20px;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(108, 255, 141, 0.1), rgba(108, 255, 141, 0.05));
    top: 0;
    left: 0;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(108, 255, 141, 0.15), rgba(108, 255, 141, 0.05));
    bottom: 0;
    right: 0;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(108, 255, 141, 0.2), rgba(108, 255, 141, 0.1));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1A1A1A;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2A2A2A;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 255, 141, 0.1);
    border-color: #6CFF8D;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(108, 255, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #6CFF8D;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #B0B0B0;
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: #1A1A1A;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2A2A2A;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 255, 141, 0.1);
}

.portfolio-img {
    height: 200px;
    width: 100%;
    background-color: #2A2A2A;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #B0B0B0;
    font-size: 0.95rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    color: #B0B0B0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: #1A1A1A;
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid #2A2A2A;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6CFF8D;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #B0B0B0;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #1A1A1A;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #2A2A2A;
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: #6CFF8D;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(108, 255, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6CFF8D;
    font-size: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #B0B0B0;
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.contact-button.whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.contact-button.email {
    background-color: #6CFF8D;
    color: #0B0B0B;
}

.contact-button.consultation {
    background-color: transparent;
    color: #6CFF8D;
    border: 2px solid #6CFF8D;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 255, 141, 0.2);
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: #B0B0B0;
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6CFF8D;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #2A2A2A;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #6CFF8D;
    color: #0B0B0B;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2A2A2A;
    color: #B0B0B0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-button {
        width: 100%;
        min-width: unset;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
}