/* -------------------------------------- */
/* CTA Section - From homepage.css */
/* -------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 300px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button {
    /* Επικάλυψη με τον κοινό cta-button. Αυτό αφορά το cta-section μόνο */
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background-color: var(--light);
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
    background-color: var(--light);
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------- */
/* Team Section - From homepage.css */
/* -------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.team-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-details h3 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.team-role {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--dark);
    background: #f5f5f5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary);
    color: white;
}


/* -------------------------------------- */
/* Footer - Common */
/* -------------------------------------- */
.main-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-section p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--secondary);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.footer-newsletter button {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--gray);
    font-size: 0.9rem;
}

/* -------------------------------------- */
/* Animations - Common */
/* -------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}