/* Simple UI Improvements for Pages */

/* Global Page Improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Premium Hero Section with Animated SVG Elements */
.tenders-hero,
.training-hero,
.careers-hero,
.about-hero,
.powertel-hero,
.generation-hero,
.enterprises-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}

/* SVG Animated Decoration Layer */
.hero-svg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-svg-decoration svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 3;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    width: 100%;
    padding: 5rem 0;
}

.hero-text {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(220, 20, 60, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.3s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.5s both;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-hero);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
    margin-top: 2.5rem;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #b01030);
    color: var(--white-color);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* SVG Wave Pattern */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 3;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    fill: var(--white-color);
}

/* Animated SVG Elements - Enhanced Movement */
.hero-svg-decoration svg .shape {
    will-change: transform;
    transform-origin: center;
}

.hero-svg-decoration svg circle.shape,
.hero-svg-decoration svg ellipse.shape,
.hero-svg-decoration svg polygon.shape,
.hero-svg-decoration svg rect.shape {
    animation: floatShape 10s ease-in-out infinite;
}

.hero-svg-decoration svg path.shape {
    animation: floatPath 8s ease-in-out infinite;
}

.hero-svg-decoration svg circle:not(.shape) {
    animation: sparkle 3s ease-in-out infinite;
}

.hero-svg-decoration svg line {
    animation: lineMove 12s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-25px) translateX(20px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(15px) translateX(-15px) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translateY(-15px) translateX(10px) rotate(3deg) scale(1.02);
    }
}

@keyframes floatPath {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) translateX(15px);
        opacity: 0.6;
    }
    66% {
        transform: translateY(10px) translateX(-10px);
        opacity: 0.4;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0) translateX(0) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translateY(-20px) translateX(15px) scale(1.2);
    }
}

@keyframes lineMove {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-15px);
    }
}

/* Tenders Page Improvements */
.tenders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tender-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.tender-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tender-number {
    background: #004e89;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tender-status.open {
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #c3e6cb;
}

.tender-status.closed {
    background: #f8d7da;
    color: #721c24;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #f5c6cb;
}

.tender-card h3 {
    color: #004e89;
    margin: 1rem 1.5rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.tender-description {
    color: #6c757d;
    margin: 0 1.5rem 1rem;
    line-height: 1.5;
}

.tender-details {
    margin: 0 1.5rem 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.detail-item i {
    color: #004e89;
    width: 16px;
}

.tender-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.tender-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tender-actions .btn-outline {
    border: 1px solid #004e89;
    color: #004e89;
    background: white;
}

.tender-actions .btn-outline:hover {
    background: #004e89;
    color: white;
}

.tender-actions .btn-red {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.tender-actions .btn-red:hover {
    background: #c82333;
    border-color: #bd2130;
}

/* Training Page Improvements */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.course-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.course-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 78, 137, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 1.5rem;
}

.course-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.course-duration, .course-level {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #495057;
}

.course-modules {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    max-height: 100px;
    overflow-y: auto;
}

.course-modules li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #6c757d;
    border-bottom: 1px solid #f8f9fa;
}

.course-modules li:before {
    content: "✓";
    color: #28a745;
    margin-right: 0.5rem;
    font-weight: bold;
}

.course-actions .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: #004e89;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.course-actions .btn:hover {
    background: #003d6b;
}

/* News Page Improvements */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-thumbnail {
    display: block;
    height: 200px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.news-card:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.news-content h2 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.news-content h2 a {
    color: #004e89;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-content h2 a:hover {
    color: #003d6b;
}

.news-summary {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.read-more {
    color: #004e89;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #003d6b;
}

/* Careers Page Improvements */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.job-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    gap: 1rem;
}

.job-header h3 {
    color: #004e89;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.job-type {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-details {
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.job-detail i {
    color: #004e89;
    width: 16px;
}

.job-description {
    color: #6c757d;
    line-height: 1.5;
    margin: 0 1.5rem 1.5rem;
}

.job-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.job-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.job-actions .btn-outline {
    border: 1px solid #004e89;
    color: #004e89;
    background: white;
}

.job-actions .btn-outline:hover {
    background: #004e89;
    color: white;
}

.job-actions .btn-red {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.job-actions .btn-red:hover {
    background: #c82333;
    border-color: #bd2130;
}

/* Page Headers */
.news-header,
.current-tenders,
.current-openings,
.course-filter-section {
    padding: 3rem 0 2rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-header-content h1,
.current-tenders h2,
.current-openings h2 {
    color: #004e89;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

.search-results-info {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.search-results-info strong {
    color: #004e89;
}

/* Search Form Improvements */
.tender-search-form, .careers-search-form, .search-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.search-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

@media (max-width: 768px) {
    .search-filters {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.search-input-group {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.search-input, .form-control {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.search-input:focus, .form-control:focus {
    outline: none;
    border-color: #004e89;
    box-shadow: 0 0 0 2px rgba(0, 78, 137, 0.1);
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: #004e89;
    box-shadow: 0 0 0 2px rgba(0, 78, 137, 0.1);
}

.btn-primary {
    background: #004e89;
    color: white;
    border: 1px solid #004e89;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: #003d6b;
    border-color: #003d6b;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
}

/* Filter Tabs */
.course-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.filter-tab {
    background: white;
    color: #004e89;
    border: 2px solid #004e89;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #004e89;
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-tab:hover::before,
.filter-tab.active::before {
    left: 0;
}

.filter-tab.active,
.filter-tab:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 78, 137, 0.3);
}

/* Process Steps Improvements */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #004e89;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: #004e89;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Section Headers */
.current-tenders h2,
.current-openings h2,
.section-title h2 {
    color: #004e89;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title .lead {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    color: #004e89;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.cta-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #004e89;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: #004e89;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #003d6b;
}

.download-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.download-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.download-card small {
    color: #6c757d;
    font-size: 0.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* No content states */
.no-news,
.col-12.text-center {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.no-news i,
.col-12.text-center i {
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-news h3,
.col-12.text-center .lead {
    color: #004e89;
    margin-bottom: 1rem;
}

/* Pagination improvements */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination-btn,
.pagination-number {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    text-decoration: none;
    color: #004e89;
    transition: all 0.2s ease;
    background: white;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: #004e89;
    color: white;
    border-color: #004e89;
}

.pagination-number.active {
    background: #004e89;
    color: white;
    border-color: #004e89;
}

.pagination-info {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Loading and Animation Improvements */
.tender-card,
.course-card,
.news-card,
.job-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.tender-card:nth-child(1) { animation-delay: 0.1s; }
.tender-card:nth-child(2) { animation-delay: 0.2s; }
.tender-card:nth-child(3) { animation-delay: 0.3s; }
.tender-card:nth-child(4) { animation-delay: 0.4s; }
.tender-card:nth-child(5) { animation-delay: 0.5s; }
.tender-card:nth-child(6) { animation-delay: 0.6s; }

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }
.course-card:nth-child(4) { animation-delay: 0.4s; }
.course-card:nth-child(5) { animation-delay: 0.5s; }
.course-card:nth-child(6) { animation-delay: 0.6s; }

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }
.news-card:nth-child(6) { animation-delay: 0.6s; }

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }
.job-card:nth-child(5) { animation-delay: 0.5s; }
.job-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Visual Effects */
.tender-card::before,
.course-card::before,
.news-card::before,
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tender-card:hover::before,
.course-card:hover::before,
.news-card:hover::before,
.job-card:hover::before {
    left: 100%;
}

/* Improved Typography */
.tender-card h3,
.course-card h3,
.news-card h2,
.job-card h3 {
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.tender-description,
.course-content p,
.news-summary,
.job-description {
    line-height: 1.6;
    color: #555;
}

/* Better Spacing */
.news-container,
.training-main {
    padding: 2rem 0;
}

.current-tenders,
.current-openings {
    padding: 3rem 0;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* Responsive Improvements */
/* Mobile Responsive Hero Section */
@media (max-width: 992px) {
    .tenders-hero,
    .training-hero,
    .careers-hero,
    .about-hero,
    .powertel-hero,
    .generation-hero,
    .enterprises-hero {
        min-height: 60vh;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .tenders-hero,
    .training-hero,
    .careers-hero,
    .about-hero,
    .powertel-hero,
    .generation-hero,
    .enterprises-hero {
        min-height: 60vh;
    }
    
    .hero-background img {
        animation: none;
        transform: scale(1.1);
    }
    
    .hero-svg-decoration {
        opacity: 0.3;
    }
    
    .hero-svg-decoration svg .shape {
        animation-duration: 6s;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-text {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-wave {
        height: 100px;
    }
    
    .tenders-grid,
    .courses-grid,
    .news-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .tender-header,
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tender-actions,
    .job-actions {
        flex-direction: column;
    }
    
    .course-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* Addit
ional Polish and Enhancements */

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.search-input:focus {
    outline: 2px solid #004e89;
    outline-offset: 2px;
}

/* Enhanced card shadows on hover */
.tender-card:hover,
.course-card:hover,
.news-card:hover,
.job-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Better image loading states */
.course-image img,
.news-thumbnail img {
    background: #f8f9fa;
    transition: opacity 0.3s ease;
}

.course-image img:not([src]),
.news-thumbnail img:not([src]) {
    opacity: 0;
}

/* Enhanced status indicators */
.tender-status.open {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.tender-status.closed {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Improved job type indicators */
.job-type {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

/* Enhanced meta information */
.news-meta span,
.job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.news-meta i,
.job-detail i {
    color: #004e89;
    width: 16px;
    text-align: center;
}

/* Better empty states */
.no-news,
.col-12.text-center {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.no-news i,
.col-12.text-center i {
    color: #004e89;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

/* Enhanced pagination */
.pagination-ellipsis {
    padding: 0.5rem 1rem;
    color: #6c757d;
    font-weight: bold;
}

/* Loading states */
.tender-card,
.course-card,
.news-card,
.job-card {
    position: relative;
}

.tender-card.loading,
.course-card.loading,
.news-card.loading,
.job-card.loading {
    pointer-events: none;
}

.tender-card.loading::after,
.course-card.loading::after,
.news-card.loading::after,
.job-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Print styles */
@media print {
    .hero-background,
    .hero-overlay,
    .search-form,
    .pagination,
    .btn {
        display: none !important;
    }
    
    .tender-card,
    .course-card,
    .news-card,
    .job-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tender-card,
    .course-card,
    .news-card,
    .job-card {
        border: 2px solid #000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tender-card,
    .course-card,
    .news-card,
    .job-card {
        opacity: 1;
        transform: none;
    }
}

/* Generation Page Improvements */
.generation-hero,
.powertel-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Unified shorter hero heights across pages to match Apply page */
.training-hero,
.generation-hero,
.enterprises-hero,
.powertel-hero,
.tenders-hero,
.contact-hero,
.careers-hero,
.about-hero,
.selfservice-hero,
.library-hero,
.hospitality-hero,
.transmission-hero {
    min-height: 280px !important;
}

/* Unified hero content styling */
.training-hero .hero-content,
.generation-hero .hero-content,
.enterprises-hero .hero-content,
.powertel-hero .hero-content,
.tenders-hero .hero-content,
.contact-hero .hero-content,
.careers-hero .hero-content,
.about-hero .hero-content,
.selfservice-hero .hero-content,
.library-hero .hero-content,
.hospitality-hero .hero-content,
.transmission-hero .hero-content {
    min-height: 280px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem 0 !important;
}

/* Unified hero text sizing */
.training-hero .hero-text h1,
.generation-hero .hero-text h1,
.enterprises-hero .hero-text h1,
.powertel-hero .hero-text h1,
.tenders-hero .hero-text h1,
.contact-hero .hero-text h1,
.careers-hero .hero-text h1,
.about-hero .hero-text h1,
.selfservice-hero .hero-text h1,
.library-hero .hero-text h1,
.hospitality-hero .hero-text h1,
.transmission-hero .hero-text h1 {
    font-size: 2.5rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2 !important;
    font-family: var(--font-hero);
}

@media (max-width: 768px) {
    .training-hero,
    .generation-hero,
    .enterprises-hero,
    .powertel-hero,
    .tenders-hero,
    .contact-hero,
    .careers-hero,
    .about-hero,
    .selfservice-hero,
    .library-hero,
    .hospitality-hero,
    .transmission-hero {
        min-height: 220px !important;
    }
    
    .training-hero .hero-content,
    .generation-hero .hero-content,
    .enterprises-hero .hero-content,
    .powertel-hero .hero-content,
    .tenders-hero .hero-content,
    .contact-hero .hero-content,
    .careers-hero .hero-content,
    .about-hero .hero-content,
    .selfservice-hero .hero-content,
    .library-hero .hero-content,
    .hospitality-hero .hero-content,
    .transmission-hero .hero-content {
        min-height: 220px !important;
        padding: 1.5rem 0 !important;
    }
    
    .training-hero .hero-text h1,
    .generation-hero .hero-text h1,
    .enterprises-hero .hero-text h1,
    .powertel-hero .hero-text h1,
    .tenders-hero .hero-text h1,
    .contact-hero .hero-text h1,
    .careers-hero .hero-text h1,
    .about-hero .hero-text h1,
    .selfservice-hero .hero-text h1,
    .library-hero .hero-text h1,
    .hospitality-hero .hero-text h1,
    .transmission-hero .hero-text h1 {
        font-size: 2rem !important;
        font-family: var(--font-hero);
    }
}

.generation-hero .hero-background,
.powertel-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.generation-hero .hero-background img,
.powertel-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.generation-hero .hero-overlay,
.powertel-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.generation-hero .hero-content,
.powertel-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.generation-hero .hero-text h1,
.powertel-hero .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-hero);
}

.generation-hero .hero-subtitle,
.powertel-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.generation-hero .hero-text p,
.powertel-hero .hero-text p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Generation Overview Sections */
.generation-overview,
.company-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.generation-overview .container,
.company-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.generation-overview .overview-content,
.company-overview .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.generation-overview .overview-text,
.company-overview .overview-text {
    padding-right: 2rem;
}

.generation-overview .overview-text h2,
.company-overview .overview-text h2 {
    color: #004e89;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.generation-overview .overview-text h3,
.company-overview .overview-text h3 {
    color: #004e89;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.generation-overview .overview-text .lead,
.company-overview .overview-text .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #495057;
}

.generation-overview .overview-text p,
.company-overview .overview-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #6c757d;
}

.generation-overview .overview-image,
.company-overview .overview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.generation-overview .overview-image img,
.company-overview .overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.generation-overview .overview-image:hover img,
.company-overview .overview-image:hover img {
    transform: scale(1.05);
}

/* Power Stations / CSR Grid */
.power-stations {
    padding: 4rem 0;
    background: white;
}

.power-stations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.power-stations h2 {
    color: #004e89;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.power-stations .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.station-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.station-card:nth-child(1) { animation-delay: 0.1s; }
.station-card:nth-child(2) { animation-delay: 0.2s; }
.station-card:nth-child(3) { animation-delay: 0.3s; }
.station-card:nth-child(4) { animation-delay: 0.4s; }
.station-card:nth-child(5) { animation-delay: 0.5s; }

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

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

.station-card:hover .station-image img {
    transform: scale(1.05);
}

.station-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 78, 137, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.station-badge.hydro {
    background: rgba(33, 150, 243, 0.9);
}

.station-badge.thermal {
    background: rgba(255, 87, 34, 0.9);
}

.station-badge.renewable {
    background: rgba(76, 175, 80, 0.9);
}

.station-content {
    padding: 1.5rem;
}

.station-content h3 {
    color: #004e89;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.station-content h3 i {
    margin-right: 0.5rem;
    color: #004e89;
}

.station-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Generation Features (Vision/Mission/Values) */
.generation-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: #004e89;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: #004e89;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.contact-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-cta .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-cta .cta-text h2 {
    color: #004e89;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-cta .cta-text p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1rem;
}

.contact-cta .cta-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-cta .cta-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-cta .cta-image:hover img {
    transform: scale(1.05);
}

/* Accordion Improvements */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: #004e89;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
    transition: all 0.2s ease;
    position: relative;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #004e89;
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    line-height: 1.6;
    color: #495057;
}

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.accordion-body li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* External Links */
.external-link {
    color: #004e89;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.external-link:hover {
    color: #003d6b;
    text-decoration: underline;
}

/* Responsive Improvements for Generation and Powertel Pages */
@media (max-width: 768px) {
    .generation-hero .hero-text h1,
    .powertel-hero .hero-text h1 {
        font-size: 2.2rem;
    }

    .generation-hero .hero-subtitle,
    .powertel-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .generation-hero .hero-text p,
    .powertel-hero .hero-text p {
        font-size: 1rem;
    }

    .generation-overview .overview-content,
    .company-overview .overview-content,
    .contact-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .generation-overview .overview-text,
    .company-overview .overview-text {
        padding-right: 0;
        text-align: center;
    }

    .generation-overview .overview-text h2,
    .company-overview .overview-text h2 {
        font-size: 1.8rem;
    }

    .generation-overview .overview-text h3,
    .company-overview .overview-text h3 {
        font-size: 1.3rem;
    }

    .generation-overview .overview-image,
    .company-overview .overview-image {
        order: -1;
    }

    .generation-overview .overview-image img,
    .company-overview .overview-image img {
        height: 250px;
    }

    .stations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .station-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .generation-features {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin: 0 auto 1rem;
    }

    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta .cta-image img {
        height: 200px;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }
}

/* Keep cards clean and white - no dark mode changes */
