/* =====================
   Services Page Specific Styles
   ===================== */

/* =====================
   Services Hero Section
   ===================== */
.services-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
    background: #1a1a1a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.2);
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    z-index: 1;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    margin-top: -40px;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(208, 185, 109, 0.05);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.stat-icon {
    color: #D0B96D;
    font-size: 24px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-label {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   Service Categories
   ===================== */
.service-categories {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #292B2B 100%);
}

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

.category-card {
    background: rgba(41, 43, 43, 0.5);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(208, 185, 109, 0.15);
    border-color: rgba(208, 185, 109, 0.3);
}

.category-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, 
        rgba(208, 185, 109, 0.05) 0%, 
        rgba(41, 43, 43, 0.8) 100%);
    border-color: rgba(208, 185, 109, 0.3);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-card.featured .card-image {
    height: 350px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(26, 26, 26, 0.8) 100%);
    pointer-events: none;
}

.badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D0B96D 0%, #B8A05F 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(208, 185, 109, 0.3);
}

.card-content {
    padding: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D0B96D 0%, #B8A05F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.card-description {
    color: #999999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: #CCCCCC;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #4CAF50;
    font-size: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-from {
    font-size: 14px;
    color: #D0B96D;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(208, 185, 109, 0.5);
    color: #D0B96D;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(208, 185, 109, 0.1);
    border-color: #D0B96D;
    transform: translateX(5px);
}

/* =====================
   Service Packages
   ===================== */
.service-packages {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
}

.service-packages::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: url('images/PEG security BG Image.png');
    background-size: cover;
    opacity: 0.02;
    transform: translateY(-50%);
}

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

.package-card {
    background: rgba(41, 43, 43, 0.5);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(208, 185, 109, 0.1);
}

.package-card.featured {
    background: linear-gradient(135deg, 
        rgba(208, 185, 109, 0.1) 0%, 
        rgba(41, 43, 43, 0.9) 100%);
    border-color: #D0B96D;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D0B96D 0%, #B8A05F 100%);
    color: #1a1a1a;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-name {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.package-tagline {
    color: #999999;
    font-size: 14px;
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    color: #D0B96D;
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
}

.period {
    font-size: 16px;
    color: #999999;
}

.package-features ul {
    list-style: none;
    margin-bottom: 40px;
}

.package-features li {
    padding: 12px 0;
    color: #CCCCCC;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.package-features li i {
    font-size: 16px;
}

.package-features li i.fa-check-circle {
    color: #4CAF50;
}

.package-features li.disabled {
    color: #666666;
    opacity: 0.5;
}

.package-features li.disabled i {
    color: #666666;
}

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

/* =====================
   Certifications Showcase
   ===================== */
.certifications-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #292B2B 0%, #1a1a1a 100%);
}

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

.cert-card {
    background: rgba(41, 43, 43, 0.5);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(208, 185, 109, 0.15);
    border-color: #D0B96D;
}

.cert-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image img {
    transform: scale(1.1);
}

.cert-content {
    padding: 30px;
    text-align: center;
}

.cert-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #D0B96D;
    margin-bottom: 10px;
}

.cert-content p {
    color: #999999;
    font-size: 14px;
    margin-bottom: 15px;
}

.cert-number {
    display: inline-block;
    background: rgba(208, 185, 109, 0.1);
    border: 1px solid rgba(208, 185, 109, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #D0B96D;
    font-weight: 600;
    letter-spacing: 1px;
}

/* =====================
   Services CTA
   ===================== */
.services-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(208, 185, 109, 0.05) 0%, 
        #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Pulsing animation removed for cleaner appearance */

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: #999999;
    margin-bottom: 40px;
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* =====================
   Responsive Design
   ===================== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card.featured {
        grid-column: span 1;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: calc(100vh - 70px);
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .services-hero .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .services-hero .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .service-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        padding: 12px 10px;
        min-width: 90px;
        flex: 1 1 calc(33.33% - 10px);
    }
    
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.7rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: calc(100vh - 60px);
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    .services-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .services-hero .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        flex: none;
    }
    
    .stat-item .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.65rem;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}