/* ============================================
   BunioX Tech Solutions - Additional Page Styles
   Styles specific to sub-pages
   ============================================ */

/* ==================== PAGE HERO ==================== */
.page-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.page-hero .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

.page-hero .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: -50px;
    right: -150px;
    animation-delay: 0s;
}

.page-hero .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    bottom: -30px;
    left: -100px;
    animation-delay: 2s;
}

.page-hero .shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -0.5px;
}

.page-hero-content .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 15px;
}

.breadcrumb-nav {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-light);
}

.breadcrumb-nav i {
    font-size: 0.7rem;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 130px 0 60px;
    }
    .page-hero-content h1 {
        font-size: 2rem;
    }
    .page-hero .shape-1 { width: 200px; height: 200px; }
    .page-hero .shape-2 { width: 150px; height: 150px; }
    .page-hero .shape-3 { width: 100px; height: 100px; }
}

/* ==================== SERVICES PAGE ==================== */
.service-section {
    position: relative;
    overflow: hidden;
}

.service-section .bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-section:nth-child(even) .bg-pattern {
    right: auto;
    left: 0;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
}

.service-card-modern {
    position: relative;
    z-index: 1;
}

.service-number-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-number-badge i {
    font-size: 0.9rem;
}

.service-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-desc-modern {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.service-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
    pointer-events: none;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.05);
}

.service-image-decoration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    padding: 15px 20px;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-image-decoration .decoration-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-image-decoration .decoration-text h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.service-image-decoration .decoration-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

/* Feature Grid Cards */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.15));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: scale(1.1);
}

.feature-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-top: 25px;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Alternating section backgrounds */
.service-section:nth-child(even) {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 50px 30px;
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
    .service-title-modern {
        font-size: 1.5rem;
    }
    .service-section:nth-child(even) {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }
    .service-image-wrapper {
        height: 300px;
        margin-bottom: 30px;
    }

    .service-section {
        text-align: center;
    }

    .service-section .bg-pattern {
        width: 200px;
        height: 200px;
        display: none;
    }
}

@media (max-width: 767.98px) {
    .service-image-wrapper {
        height: 250px;
        margin-bottom: 25px;
    }
    .service-features-grid {
        gap: 12px;
    }
    .feature-card {
        padding: 15px;
    }
    .service-btn {
        width: 100%;
        justify-content: center;
    }
    .service-number-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .service-image-decoration {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 15px;
    }

    .service-image-decoration .decoration-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .service-image-decoration .decoration-text h6 {
        font-size: 0.8rem;
    }

    .service-image-decoration .decoration-text p {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        padding: 120px 0 50px;
    }
    .page-hero-content h1 {
        font-size: 1.75rem;
    }
    .page-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .service-title-modern {
        font-size: 1.35rem;
    }
    .service-desc-modern {
        font-size: 0.9rem;
    }

    .service-section:nth-child(even) {
        padding: 25px 15px;
    }

    .service-image-wrapper {
        height: 200px;
        margin-bottom: 20px;
    }

    .feature-card h6 {
        font-size: 0.85rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }
}

/* ==================== ABOUT PAGE ==================== */
.about-image-wrapper {
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

.about-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

.mv-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary);
    font-size: 1.6rem;
}

/* Team Cards */
.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.team-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ==================== SERVICES PAGE ==================== */
.service-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-features li {
    font-size: 0.95rem;
}

/* ==================== PROJECTS PAGE ==================== */
.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.project-item {
    transition: var(--transition);
}

/* Process Cards */
.process-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

/* ==================== TRAINING PAGE ==================== */
.course-detail-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.course-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-header {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.8rem;
}

.course-body {
    position: relative;
}

.course-badge-detail {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.course-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.course-meta {
    margin-bottom: 20px;
}

.course-meta li {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.course-meta li i {
    color: var(--primary);
}

.course-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.course-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Benefit Cards */
.benefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary);
    font-size: 1.6rem;
}

/* ==================== SHOP PAGE ==================== */
.product-rating i {
    font-size: 0.85rem;
}

.cart-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--success);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    font-weight: 500;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Shop Features */
.shop-feature {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.shop-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 1.3rem;
}

.business-hours li {
    color: var(--text-light);
}

.business-hours strong {
    color: var(--text-dark);
}

/* Map Placeholder */
.map-section {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.map-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .map-placeholder {
        height: 250px;
    }
}
