/* AG-Partner Index Page Styles */
/* ©2026 AG-Partner All rights reserved */

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height:55vh;
    background-image: url(/img/background/city.png);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(57, 87, 169, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 30px 0px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #3957a9 0%, #39a9a0 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 169, 160, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    padding:  12px;
}

.scroll-indicator span {
    font-size: 14px;
}

.scroll-indicator i {
    font-size: 24px;
}

/* ============================================
   Container & Common Styles
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    text-align: center;
    color: black;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Features Section - ALL ANIMATIONS DISABLED
   ============================================ */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(57, 87, 169) 0%, rgba(57, 169, 160, 0.1) 100%);
}

.features-section * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.377);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.feature-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(57, 87, 169, 0.2);
    border-color: rgba(57, 169, 160, 0.5);
    box-shadow: 0 15px 40px rgba(57, 169, 160, 0.3);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(57, 87, 169, 0.3) 0%, rgba(57, 169, 160, 0.3) 100%);
    border-radius: 20px;
    font-size: 36px;
    color: rgba(57, 169, 160, 0.9);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================
   Projects Section - REDESIGNED
   ============================================ */
.projects-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.263);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 3, 3, 0.253);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1 !important;
    transform: none !important;
    min-height: 180px;
}

.project-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(57, 169, 160, 0.3);
    border-color: rgba(57, 169, 160, 0.5);
}

.project-image {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(57, 87, 169, 0.2) 0%, rgba(57, 169, 160, 0.2) 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.project-content {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.project-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-content button {
    margin-left: 0px;
}
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    
}

.project-link:hover {
    color: rgba(0, 0, 0, 0.543);
    gap: 15px;
}

.project-link.disabled {
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.project-link.disabled:hover {
    gap: 10px;
}

/* ============================================
   Recruitment Section
   ============================================ */
.recruitment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(57, 87, 169, 0.15) 0%, rgba(57, 169, 160, 0.15) 100%);
}

.recruitment-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recruitment-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.recruitment-content p {
    font-size: 18px;
    color: black;
    line-height: 1.8;
    margin-bottom: 40px;
}

.recruitment-requirements {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    font-size: 16px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.requirement-item i {
    color: rgba(57, 169, 160, 0.9);
    font-size: 20px;
}

.recruitment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large, .btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: linear-gradient(135deg, #3957a9 0%, #39a9a0 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(57, 169, 160, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(57, 169, 160, 0.6);
}

.btn-outline-large {
    background: transparent;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   News Section
   ============================================ */
.news-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid rgba(57, 169, 160, 0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-left-color: rgba(57, 169, 160, 1);
}

.news-date {
    color: rgba(57, 169, 160, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.news-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.news-more {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    gap: 15px;
}

/* ============================================
   Animations - ALL DISABLED
   ============================================ */

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 50vh;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-logo {
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 200px;
        margin: auto;
    }
    
    .btn-primary, .btn-secondary {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .features-section,
    .projects-section,
    .recruitment-section,
    .news-section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .project-image {
        width: 100%;
        height: 200px;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .recruitment-requirements {
        flex-direction: column;
        gap: 15px;
    }
    
    .recruitment-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .btn-primary-large,
    .btn-outline-large {
        width: 100%;
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .hero-section {
        background-attachment: fixed;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(57, 87, 169, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(57, 169, 160, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(57, 169, 160, 0.1);
}

.faq-question > i.fa-question-circle {
    font-size: 24px;
    color: rgba(57, 169, 160, 0.9);
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin: 0;
}

.faq-toggle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: rgba(57, 169, 160, 0.9);
}

.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 69px;
}

.faq-answer p {
    color:black;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
        gap: 12px;
    }

    .faq-question > i.fa-question-circle {
        font-size: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.7;
    }
}

