﻿.main-container {
    min-height: 100vh;
    position: relative;
    overflow: visible;
    width: 100%;
}

.page {

    position: relative;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.12s ease;
    z-index: auto;
    display: none; 
    overflow: visible;
    padding-bottom: 120px; 
}

.page.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.page.active {
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: 2;
    display: block;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-section {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header h2 i {
    color: #667eea;
    -webkit-text-fill-color: #667eea;
    margin-right: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    color: #667eea;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 60px;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    background-color: #2a2a2a;
    color: #ffffff;
}

.contact-form select option {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 10px;
}

.contact-form select:focus {
    outline: 2px solid var(--primary-color);
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

#page-home .hero {
    padding-top: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.home-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.home-preview h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #ffffff;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
}

.preview-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.preview-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    background: transparent;
}

.service-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 123, 255, 0.4));
}

.preview-card:hover .service-image,
.service-card:hover .service-image {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 20px rgba(0, 123, 255, 0.5));
}

.preview-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.preview-card p {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1rem;
}

#page-products .products-section {
    padding: 120px 0 150px 0;
    min-height: 100vh;
}

#page-products {
    padding-bottom: 100px;
}

.services-section {
    padding: 120px 0 150px 0;
    background: transparent;
    min-height: 100vh;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 520px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
    width: 100%;
    text-align: left;
}

.service-features li {
    color: #e0e0e0;
    margin-bottom: 14px;
    padding-left: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
}

#page-contact .contact-section {
    padding: 120px 0 150px 0;
    min-height: 100vh;
}

#page-about .about-section {
    padding: 80px 0 100px 0;
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.story-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.image-card i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.image-card .iconify {
    width: 64px !important;
    height: 64px !important;
    font-size: 64px !important;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.image-card h3 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.image-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.values-section {
    margin-bottom: 100px;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-card p {
    color: #94a3b8;
    line-height: 1.6;
}

.why-choose-us {
    margin-bottom: 100px;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.feature-card.purple {
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-card.purple::before {
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
}

.feature-card.purple:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.feature-card.purple .feature-icon-large {
    color: #a78bfa;
}

.feature-card.purple .feature-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.feature-card.green {
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-card.green::before {
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
}

.feature-card.green:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.feature-card.green .feature-icon-large .iconify {
    color: #a78bfa !important;
}

.feature-card.green .feature-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
}

.stats-showcase {
    margin-bottom: 80px;
}

.stats-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    background: rgba(124, 58, 237, 0.1);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-icon .iconify {
    width: 48px;
    height: 48px;
    font-size: 48px;
}

.stat-item h3 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(124, 58, 237, 0.2);
}

.about-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    min-width: 180px;
}

.btn-lg i {
    margin-right: 10px;
}

@media (max-width: 968px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 20px;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .preview-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
        padding: 40px 20px;
    }

    .service-card,
    .preview-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .home-preview h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .btn,
    .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    #page-products .products-section,
    #page-services .services-section,
    #page-contact .contact-section,
    #page-about .about-section {
        padding: 100px 0 80px 0;
    }

    .hero-container {
        gap: 40px;
        padding: 20px;
    }

    .hero-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        min-width: 200px;
        width: 100%;
        max-width: 250px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .home-preview {
        padding: 60px 0 80px 0;
    }

    .preview-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .company-stats {
        grid-template-columns: 1fr;
    }

    .preview-card,
    .service-card {
        padding: 25px 15px;
    }

    .home-preview h2 {
        font-size: 1.8rem;
    }

    .hero-container {
        gap: 30px;
        padding: 15px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat {
        padding: 15px;
        min-width: 160px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .preview-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }
}

.page-loading {
    opacity: 0.6;
    pointer-events: none;
}

.page-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

html {
    scroll-behavior: smooth;
}

.page {
    padding-top: 0;
}

.page {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page.active {
    animation: pageSlideIn 0.5s ease-out;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why-services {
    margin: 80px 0;
    text-align: center;
}

.why-services > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.why-services > h2 i {
    -webkit-text-fill-color: #667eea;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.services-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.benefit-icon i,
.benefit-icon .iconify {
    font-size: 2rem;
    color: #fff;
    display: inline-block;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.services-cta {
    margin: 80px 0;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: ctaPulse 15s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.cta-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .why-services > h2 {
        font-size: 2rem;
    }

    .services-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 30px 20px;
    }

    .services-cta {
        padding: 50px 20px;
        margin: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.partners-section {
    padding: 80px 0;
    min-height: 100vh;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 60px 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.partner-image-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-image-circle {
    transform: scale(1.05);
    border-color: #764ba2;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

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

.partner-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.partner-role {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.partner-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.partner-link .iconify {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-image-circle {
        width: 120px;
        height: 120px;
    }
}

/* ==================== LEGAL PAGES STYLES ==================== */

.legal-page {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
    padding: 40px 20px;
    color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.back-home {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.1);
}

.back-home:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(-5px);
}

.back-home .iconify {
    font-size: 20px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-content h1 .iconify {
    font-size: 2.5rem;
}

.legal-content .last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #8b9cff;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #a5b4fc;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #8b9cff;
    border-bottom-color: #8b9cff;
}

.highlight-box {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box strong {
    color: #667eea;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 25px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}