/* style.css - L10nAi Main Styles */

* {
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: radial-gradient(circle at 10% 20%, #2d1b4e, #0b0518 90%);
    min-height: 100vh;
    color: #fff;
    padding: 20px;
    overflow-x: hidden;
    margin: 0;
}
.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.input-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 18px;
    width: 100%;
    color: white;
    outline: none;
    transition: 0.3s;
}
.input-glass:focus {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}
.input-glass::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.input-glass option {
    background: #1a0b2e;
    color: #fff;
}
.btn-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 16px;
    padding: 14px 30px;
    font-weight: 700;
    color: white;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px -8px rgba(168, 85, 247, 0.4);
}
.btn-purple:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px -8px #7c3aed;
}
.content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
}
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #7c3aed, #c084fc);
    z-index: 1000;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}
.navbar-wrapper {
    position: sticky;
    top: 10px;
    z-index: 50;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    transition: all 0.3s ease;
}
.navbar-wrapper .glass {
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.08);
}
.nav-link {
    cursor: pointer;
    text-decoration: none;
    color: #d1d5db;
    transition: 0.3s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}
.nav-link:hover {
    color: #ffffff;
}
.nav-link.active {
    color: #c084fc;
    border-bottom-color: #a855f7;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}
#about,
#why-us,
#services,
#clients,
#contact {
    scroll-margin-top: 100px;
}
.hero-section {
    position: relative;
    border-radius: 28px;
    margin-bottom: 5rem;
    min-height: 600px;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    border-radius: 28px;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-content-wrapper .grid {
    width: 100%;
}
.hero-image-container {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    .hero-content-wrapper {
        padding: 2rem 1.5rem;
        min-height: 500px;
    }
    .hero-image-container {
        max-width: 320px;
        margin: 0 auto;
    }
    .navbar-wrapper {
        top: 10px;
        padding: 0 10px;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-grid.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.15);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-text p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}
.about-stats-mini div {
    text-align: center;
}
.about-stats-mini .number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e9d5ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-stats-mini .label {
    color: #9ca3af;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        max-height: 300px;
    }
    .about-stats-mini {
        justify-content: center;
    }
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.why-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}
.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.why-card:nth-child(1) {
    transition-delay: 0.05s;
}
.why-card:nth-child(2) {
    transition-delay: 0.15s;
}
.why-card:nth-child(3) {
    transition-delay: 0.25s;
}
.why-card:nth-child(4) {
    transition-delay: 0.35s;
}
.why-card:hover {
    background: rgba(168, 85, 247, 0.10);
    transform: translateY(-6px);
    border-color: #a855f7;
}
.why-card .icon {
    font-size: 2.5rem;
    color: #c084fc;
    margin-bottom: 0.75rem;
}
.why-card .number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e9d5ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-card .label {
    color: #d1d5db;
    font-weight: 500;
    margin-top: 0.25rem;
}
.why-card .desc {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(40px);
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:nth-child(1) {
    transition-delay: 0.05s;
}
.service-card:nth-child(2) {
    transition-delay: 0.15s;
}
.service-card:nth-child(3) {
    transition-delay: 0.25s;
}
.service-card:nth-child(4) {
    transition-delay: 0.35s;
}
.service-card:hover {
    background: rgba(168, 85, 247, 0.15);
    transform: translateY(-8px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px -10px #a855f7;
}
.service-icon {
    font-size: 3rem;
    color: #c084fc;
    margin-bottom: 1rem;
    display: block;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.service-detail-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    transition: 0.3s;
}
.service-detail-card:hover {
    background: rgba(168, 85, 247, 0.10);
    border-color: #a855f7;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
}
.pricing-card:hover {
    background: rgba(168, 85, 247, 0.10);
    border-color: #a855f7;
    transform: translateY(-6px);
}
.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e9d5ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.pricing-card ul li {
    padding: 0.5rem 0;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.back-to-services {
    display: inline-block;
    margin-top: 1rem;
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.back-to-services:hover {
    color: #ffffff;
}
.example-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.10);
    border-radius: 16px;
    padding: 1.5rem;
    transition: 0.3s;
}
.example-card:hover {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.05);
}
.carousel.panelcontainer {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 30px 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    direction: ltr;
}
.cmp-carousel {
    position: relative;
    overflow: hidden !important;
    width: 100%;
}
.cmp-carousel__wrapper {
    position: relative;
    overflow: hidden;
}
.cmp-carousel__content {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
}
.cmp-carousel__item {
    flex: 0 0 225.25px;
    min-width: 225.25px;
    margin: 0 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cmp-carousel__item .cmp-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #1a0b2e;
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 15px 10px;
    height: 110px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.cmp-carousel__item .cmp-image:hover {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.10);
    transform: scale(1.04);
    box-shadow: 0 10px 30px -8px rgba(168, 85, 247, 0.3);
}
.cmp-carousel__item .cmp-image__image {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
    filter: brightness(0.9);
}
.cmp-carousel__actions {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
    z-index: 10;
}
.cmp-carousel__action {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c084fc;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.cmp-carousel__action:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: #a855f7;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.2);
}
.cmp-carousel__action--previous .cmp-carousel__action-icon::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.cmp-carousel__action--next .cmp-carousel__action-icon::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.cmp-carousel__action-text {
    display: none;
}
.cmp-title__text {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 1.8rem !important;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}
.cmp-title__text span {
    background: linear-gradient(135deg, #e9d5ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
    .cmp-carousel__item {
        flex: 0 0 180px;
        min-width: 180px;
        margin: 0 10px;
    }
    .cmp-carousel__item .cmp-image {
        height: 85px;
        padding: 10px;
    }
    .cmp-title__text {
        font-size: 1.6rem !important;
    }
    .cmp-carousel__action {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.video-modal.active {
    display: flex;
}
.video-modal-content {
    position: relative;
    max-width: 900px;
    width: 95%;
    background: rgba(26, 11, 46, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(168, 85, 247, 0.08);
    animation: modalFadeIn 0.35s ease;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.close-modal {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    line-height: 1;
    background: none;
    border: none;
}
.close-modal:hover {
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}
@media (max-width: 768px) {
    .video-modal-content {
        padding: 10px;
        border-radius: 20px;
    }
    .close-modal {
        top: 4px;
        right: 10px;
        font-size: 1.8rem;
    }
}
.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.contact-modal.active {
    display: flex;
}
.contact-modal-content {
    max-width: 600px;
    width: 100%;
    background: rgba(26, 11, 46, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.35s ease;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.contact-modal-content .close-modal {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
}
.contact-modal-content .close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}
.contact-modal-content form select.input-glass {
    appearance: auto;
}
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 1.5rem;
    }
}
.footer-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 3rem 2rem 1.8rem;
    margin-top: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 2.5rem;
}
.footer-col h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}
.footer-col h5 .accent {
    color: #a855f7;
}
.footer-col p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover {
    color: #c084fc;
    transform: translateX(4px);
}
.footer-links a i {
    font-size: 0.7rem;
    color: #a855f7;
}
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 2rem 0 1.2rem;
}
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom .copyright {
    color: #6b7280;
    font-size: 0.85rem;
}
.footer-bottom .copyright .brand {
    color: #a855f7;
    font-weight: 600;
}
.footer-lang-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    padding: 6px 16px 6px 12px;
    color: #ddd;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    appearance: auto;
}
.footer-lang-select:hover,
.footer-lang-select:focus {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
    color: #fff;
}
.footer-lang-select option {
    background: #1a0b2e;
    color: #fff;
}
.social-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    font-size: 1.4rem;
    margin-left: 0.75rem;
}
.social-icon:hover {
    color: #a855f7;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
    }
    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid .footer-col:first-child {
        grid-column: 1;
    }
}
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
#backToTop:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}
@media (max-width: 768px) {
    #backToTop {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}