/* ========================= */
/* === SERVICES SECTION === */
/* ========================= */

.service-grid {
    margin-top: var(--spacing-md);
}

.service-card {
    background: #0c0e26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.service-card .service-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.service-card .service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
}

.read-more {
    font-weight: bold;
    color: #00e0ff;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Hover effect */
.service-card:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.25);
}

.service-card:hover .service-icon,
.service-card:hover .read-more {
    color: #fff;
}

/* ========================= */
/* === CLIENT SLIDER === */
/* ========================= */

.section--clients img {
    max-height: 120px;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
    height: auto;
}

.section--clients img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.glide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    padding: 1rem;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.glide__slide img {
    max-height: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.glide__slide.glide__slide--active {
    opacity: 1;
    transform: scale(1.05);
}

.glide__slide.glide__slide--active img {
    filter: grayscale(0%);
}

/* ========================= */
/* === FOOTER SECTION === */
/* ========================= */

#particles-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section--footer {
    position: relative;
    background: #0c0e26;
    color: #fff;
    padding: var(--spacing-lg) 0;
    font-size: 0.95rem;
    overflow: hidden;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: #ffffff;
    vertical-align: middle;
}

.footer-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    vertical-align: middle;
}

.footer-right a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }
}

.section--about {
    background: #0c0e26;
    color: #fff;
    padding: var(--spacing-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;


    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 600px;
}

.about-text .section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.about-text .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.about-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

.about-lottie {
    max-width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin-bottom: var(--spacing-md);
    }
}

#particles-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particles-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section--about {
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
}

.hero-logo {
    width: clamp(260px, 40vw, 560px);
    height: auto;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-logo {
        margin-bottom: var(--spacing-lg);
    }
}

.hero-logo svg {
    width: 100%;
    height: auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-logo svg {
        max-width: 260px;
    }
}

.hero-tagline {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
}

.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: rgba(12, 14, 38, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.lang-switcher button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s ease;
}

.lang-switcher button:hover {
    transform: scale(1.15);
}