/* Hero Portfolio Section */
.hero-portfolio {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-portfolio .hero-title {
    font-size: 42px;
    max-width: 600px;
}

/* Projects Highlight Section */
.projects-highlight {
    padding: 64px 0 80px;
    background-color: #e5e7eb;
}

.section-title-dark {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 48px;
}

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

.project-card {
    background-color: #3a3a3a;
    color: white;
    padding: 64px 32px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    background-color: #454545;
    transform: translateY(-5px);
}

.project-icon {
    margin: 0 auto 24px;
    color: white;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background-color: #3a3a3a;
    padding: 80px 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.cta-title {
    font-size: 36px;
    color: white;
    max-width: 600px;
    line-height: 1.3;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Footer Portfolio */
.footer-portfolio {
    background-color: #3a3a3a;
    color: white;
    padding: 48px 0;
    border-top: 1px solid #4a4a4a;
}

.footer-portfolio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-circle-footer {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-footer span {
    color: #ff6b35;
    font-weight: bold;
    font-size: 24px;
}

.footer-center {
    display: flex;
    align-items: center;
}

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

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-portfolio .hero-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 28px;
    }

    .footer-portfolio-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-portfolio {
        height: 350px;
    }

    .hero-portfolio .hero-title {
        font-size: 26px;
    }

    .project-card {
        padding: 48px 24px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 24px;
    }
}
