/* Solutions Page Styles */
.solutions-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 160, 48, 0.1) 0%, transparent 50%);
}

.solutions-hero .hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.solutions-hero .hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.solutions-hero .hero-content {
    position: relative;
    z-index: 3;
}

.solutions-hero .hero-logo {
    margin-bottom: 2rem;
}

.solutions-hero .company-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.solutions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.solutions-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-animation-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-bg-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Vision & Mission */
.vision-mission {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(26, 56, 139, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 160, 48, 0.03) 0%, transparent 50%);
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(26, 56, 139, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 160, 48, 0.08), transparent);
    transition: left 0.8s ease;
}

.vision-card:hover::before,
.mission-card:hover::before {
    left: 100%;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(26, 56, 139, 0.12);
    border-color: var(--secondary-color);
}

.vision-card .card-icon,
.mission-card .card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 30px rgba(255, 160, 48, 0.3);
    position: relative;
}

.vision-card .card-icon::after,
.mission-card .card-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 160, 48, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.vision-card h3,
.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 700;
}

.vision-card p,
.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Expertise Tools */
.expertise-tools {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.tool-category {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.tool-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tool-category:hover::before {
    transform: scaleX(1);
}

.tool-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 56, 139, 0.1);
    border-color: var(--secondary-color);
    background: white;
}

.tool-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tool-category h3 i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    background: rgba(255, 160, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tool-tag {
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(26, 56, 139, 0.2);
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.team-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.team-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s ease;
    padding: 2rem 0;
}

.team-card {
    flex: 0 0 350px;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(26, 56, 139, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(26, 56, 139, 0.12);
    border-color: var(--secondary-color);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 160, 48, 0.3);
    border-radius: 50%;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

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

.member-expertise {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.member-skills span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(26, 56, 139, 0.1);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(26, 56, 139, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(255, 160, 48, 0.3);
}

/* Products & Solutions */
.products-solutions {
    padding: 8rem 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3.5rem;
    margin-top: 4rem;
}

.solution-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 56, 139, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(26, 56, 139, 0.12);
    border-color: var(--secondary-color);
}

.solution-media {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.solution-media video,
.solution-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card:hover .solution-media video,
.solution-card:hover .solution-media img {
    transform: scale(1.08);
}

.solution-content {
    padding: 3rem 2.5rem;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 12px 24px rgba(255, 160, 48, 0.3);
}

.solution-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.solution-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.solution-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
}

.solution-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 2px solid transparent;
}

.solution-btn:hover {
    color: var(--secondary-color);
    gap: 1.2rem;
    border-bottom-color: var(--secondary-color);
}

/* CTA Section */
.solutions-cta {
    padding: 8rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 160, 48, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--primary-color);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-hero h1 {
        font-size: 3.2rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        padding: 6rem 0 3rem;
    }

    .solutions-hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .vision-mission,
    .expertise-tools,
    .team-section,
    .products-solutions,
    .solutions-cta {
        padding: 6rem 0;
    }

    .vision-card,
    .mission-card {
        padding: 3rem 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tool-category {
        padding: 2.5rem 2rem;
    }

    .team-card {
        flex: 0 0 320px;
        padding: 2.5rem 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solution-content {
        padding: 2.5rem 2rem;
    }

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

@media (max-width: 480px) {
    .solutions-hero {
        padding: 5rem 0 2rem;
    }

    .solutions-hero h1 {
        font-size: 2.2rem;
    }

    .solutions-hero p {
        font-size: 1.2rem;
    }

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

    .section-header p {
        font-size: 1.1rem;
    }

    .vision-mission,
    .expertise-tools,
    .team-section,
    .products-solutions,
    .solutions-cta {
        padding: 4rem 0;
    }

    .vision-card,
    .mission-card {
        padding: 2.5rem 1.5rem;
    }

    .vision-card .card-icon,
    .mission-card .card-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .tool-category {
        padding: 2rem 1.5rem;
    }

    .team-card {
        flex: 0 0 300px;
        padding: 2rem 1.5rem;
    }

    .member-image {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .solution-content {
        padding: 2rem 1.5rem;
    }

    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

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

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

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}