/* Procurement Activity Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 70%), 
                url('../images/procurement-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1000px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--light-text);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--primary);
    font-weight: 500;
}

/* Service Layout */
.service-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    background: white;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.sidebar nav a {
    display: block;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    color: var(--text);
    text-decoration: none;
    padding-left: 1rem;
    transition: color 0.3s ease;
}

.sidebar nav a.active {
    color: var(--accent);
    font-weight: 600;
    border-left: 3px solid var(--accent);
}

.sidebar nav a:hover {
    color: var(--accent);
}

/* Main Content */
.main-content {
    flex: 1;
}

.intro-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
    text-align: justify;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-layout {
        flex-direction: column;
        padding: 1rem;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon {
        margin-bottom: 1rem;
    }
    
    .intro-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}