/* Table of Contents:
- General Styles
- Header
- Buttons
- Hero Slider
- Top Bar
- Subsidiaries Overlay
- About & Vision Section
- Training Department Section
- News Section
- Power Generation Statistics Section
- Footer
- Responsive Design
- Training Page
*/

/* General Styles */
:root {
    --primary-color: #004E89;
    --accent-color: #FF6B6B;
    --secondary-color: #00A8CC;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --white-color: #FFFFFF;
    --light-gray-color: #F0F2F5;
    --dark-gray-color: #2C3E50;
    --text-color: #333;
    --text-light: #666;
    --border-color: #E0E0E0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s ease;
    --font-family: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Manrope', 'Poppins', system-ui, -apple-system, sans-serif;
    --font-hero: 'Aeonik', 'Manrope', system-ui, -apple-system, sans-serif;
    --font-other: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #003366);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #0078A3);
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #E55A5A);
    --gradient-overlay: linear-gradient(to right, rgba(0, 20, 41, 0.4), rgba(0, 20, 41, 0.3));
    --gradient-light: linear-gradient(135deg, #f8f9fa, #e9ecef);
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body text uses Satoshi */
body,
p,
span,
div,
a,
li,
td,
th,
input,
textarea,
select,
button {
    font-family: var(--font-family);
}

/* Headings in other sections use Manrope (not hero sections) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Hero sections override to use Aeonik */
.hero-text h1,
.hero-text h2,
.slide-content h1,
.slide-content h2 {
    font-family: var(--font-hero);
}

/* Cards and other sections use Manrope/Geist */
.card,
.tender-card,
.course-card,
.news-card,
.job-card,
.station-card,
.feature-item {
    font-family: var(--font-other);
}

.card h2,
.card h3,
.card h4,
.tender-card h3,
.course-card h3,
.news-card h2,
.job-card h3,
.station-card h3,
.feature-item h4 {
    font-family: var(--font-heading);
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
}

.container {
    width: min(90%, 1200px);
    margin: auto;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 78, 137, 0.1);
    z-index: var(--z-sticky);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 78, 137, 0.1);
    border-bottom-color: rgba(0, 78, 137, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Modern Navigation Styles */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0.75rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 993px) {
    .nav-menu { flex-wrap: nowrap; gap: clamp(0.75rem, 2vw, 2rem); }
    .nav-link { white-space: nowrap; }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-link.active {
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Modern Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 78, 137, 0.15);
    padding: 1.5rem;
    width: 320px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-dropdown);
    border: 1px solid rgba(0, 78, 137, 0.1);
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 78, 137, 0.05), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(0, 78, 137, 0.05);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.dropdown-item:hover .dropdown-title {
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 78, 137, 0.2), transparent);
    margin: 0.75rem 0;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-submenu > .dropdown-item .fa-chevron-right {
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 78, 137, 0.15);
    padding: 1rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: calc(var(--z-dropdown) + 1);
    border: 1px solid rgba(0, 78, 137, 0.1);
    pointer-events: none;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.dropdown-submenu-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.dropdown-submenu:hover > .dropdown-item .fa-chevron-right {
    transform: translateX(3px);
}

.dropdown-submenu .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.dropdown-submenu .dropdown-item i {
    font-size: 1rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: var(--primary-color);
    background: rgba(0, 78, 137, 0.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--primary-color);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* CTA Button in Navigation */
.nav-cta .nav-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
    transition: all 0.3s ease;
}

.nav-cta .nav-link::after {
    display: none;
}

.nav-cta .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 78, 137, 0.4);
    color: var(--white-color);
}

/* Buttons */
.btn, .btn-outline, .btn-red {
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-red {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.btn:hover, .btn-outline:hover, .btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn:focus, .btn-outline:focus, .btn-red:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.slide.active .slide-bg img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 20, 41, 0.7) 0%, rgba(0, 78, 137, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 5%;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.9);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.1;
    color: var(--white-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slide-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
    pointer-events: all;
    font-size: 1.2rem;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.dot.active {
    background: var(--white-color);
    border-color: var(--white-color);
    transform: scale(1.2);
}

.dot:hover {
    border-color: var(--white-color);
    transform: scale(1.1);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    width: 0%;
    transition: width 0.3s ease;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a, .social-links a {
    color: var(--white-color);
    text-decoration: none;
    margin-right: 25px;
    transition: var(--transition);
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.address-info a {
    color: var(--white-color);
    text-decoration: none;
}

.contact-info a:hover, .social-links a:hover {
    color: var(--accent-color);
}

.external-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.external-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.external-link i {
    font-size: 0.8rem;
}

/* Custom Accordion Styling for ESG Section */
#esgAccordion {
    margin-top: 2rem;
}

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

#esgAccordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#esgAccordion .accordion-button {
    background-color: var(--light-gray-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

#esgAccordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: none;
}

#esgAccordion .accordion-button:not(.collapsed) i {
    color: var(--white-color);
}

#esgAccordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

#esgAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004E89'%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");
}

#esgAccordion .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");
    transform: rotate(180deg);
}

#esgAccordion .accordion-body {
    padding: 1.5rem;
    background-color: var(--white-color);
    color: #666;
    line-height: 1.7;
}

#esgAccordion .accordion-body p {
    margin: 0;
}

/* Custom Accordion Styling for Powertel Services */
#powertelAccordion {
    margin-top: 2rem;
}

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

#powertelAccordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#powertelAccordion .accordion-button {
    background-color: var(--light-gray-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

#powertelAccordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: none;
}

#powertelAccordion .accordion-button:not(.collapsed) i {
    color: var(--white-color);
}

#powertelAccordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

#powertelAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004E89'%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");
}

#powertelAccordion .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");
    transform: rotate(180deg);
}

#powertelAccordion .accordion-body {
    padding: 1.5rem;
    background-color: var(--white-color);
    color: #666;
    line-height: 1.7;
}

#powertelAccordion .accordion-body p {
    margin: 0 0 1rem 0;
}

#powertelAccordion .accordion-body ul {
    margin-top: 0.5rem;
}

#powertelAccordion .accordion-body li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Enhanced Subsidiaries Section */
.subsidiaries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}


.subsidiaries-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.subsidiaries-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.subsidiaries-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.subsidiary-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.subsidiary-card:hover::before {
    transform: scaleX(1);
}

.subsidiary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.subsidiary-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.subsidiary-logo img {
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.subsidiary-card:hover .subsidiary-logo img {
    transform: scale(1.05);
}

.subsidiary-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-family: var(--font-heading);
}

.subsidiary-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.subsidiary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 auto;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.subsidiary-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.subsidiary-link i {
    transition: transform var(--transition);
}

.subsidiary-link:hover i {
    transform: translateX(3px);
}

/* Legacy Subsidiaries Overlay (for backward compatibility) */
.subsidiaries-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.subsidiary-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: center;
}

.logo-item {
    text-align: center;
}

.logo-item img {
    height: 55px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo-item:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--accent-color));
}

/* About & Vision Section */
.about-vision {
    padding: 100px 0;
    background-color: var(--light-gray-color);
}

.about-vision .container {
    text-align: center;
}

.about-vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-vision-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.about-vision-content > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.vision-points {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.point {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.point:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.point-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.point h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.about-vision .btn-red {
    margin-top: 40px;
}

/* News Section */
.news {
    padding: 100px 0;
}

.news h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

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

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

.news-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

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

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

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e31837;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.news-date span {
    display: block;
}

.news-content {
    padding: 1.5rem;
}

.news-tag {
    background: #f8f9fa;
    color: #e31837;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-read-more {
    color: #e31837;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.btn-read-more:hover {
    gap: 0.75rem;
}

/* Power Generation Statistics Section */
.power-stats {
    background: #f8f9fa;
    padding: 4rem 0;
}

.power-stats h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.stats-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stats-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-filter {
    padding: 8px 16px;
    border: none;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-filter.active {
    background: #e31837;
    color: #fff;
}

.stats-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.stats-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-badge.operational {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.partial {
    background: #fff3e0;
    color: #ef6c00;
}

.status-badge.maintenance {
    background: #ffebee;
    color: #c62828;
}

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

.summary-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.summary-card i {
    font-size: 2rem;
    color: #e31837;
    margin-bottom: 1rem;
}

.summary-card h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.summary-card p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e31837;
}

/* Training Department Section */
.training {
    padding: 100px 0 50px;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.training-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.training-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-gray-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 80px 0 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer .social-links a {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-right: 20px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    font-size: 14px;
}

/* Responsive Design */
/* Mobile Navigation */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1.25rem 1rem;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 78, 137, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 0.85rem 0.25rem;
        font-size: 1rem;
        justify-content: space-between;
    }

    .nav-cta .nav-link {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white-color);
        padding: 0.85rem;
        border-radius: 12px;
        margin-top: 1rem;
        text-align: center;
    }

.offcanvas-start {
    width: 280px;
}

    .offcanvas-body .nav-link {
        padding: 0.75rem 0.25rem;
        display: block;
    }

    .offcanvas-body .collapse .nav-link {
        padding: 0.5rem 0.25rem;
        font-size: 0.95rem;
    }

.offcanvas {
    background: var(--white-color);
}

.offcanvas-toggle {
    background: transparent;
    border: 0;
    color: var(--text-color);
    padding: 0.75rem 0.25rem;
}

.offcanvas-toggle:focus {
    box-shadow: none;
}

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        gap: 0.5rem;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 78, 137, 0.1);
        border: 1px solid rgba(0, 78, 137, 0.1);
        background: var(--white-color);
        border-radius: 12px;
        margin: 0.75rem 0;
        padding: 0.75rem;
        opacity: 1;
        visibility: visible;
        display: none;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-content {
        width: 100%;
        max-width: none;
        gap: 0.5rem;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        width: 100%;
        justify-content: flex-start;
        background: rgba(0, 78, 137, 0.03);
        border: 1px solid rgba(0, 78, 137, 0.08);
        transition: all 0.2s ease;
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-item:active {
        background: rgba(0, 78, 137, 0.08);
        transform: scale(0.98);
    }

    .dropdown-item i {
        font-size: 1.25rem;
        color: var(--primary-color);
        width: 24px;
        text-align: center;
        flex-shrink: 0;
    }

    .dropdown-item div {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        margin-left: 0.75rem;
    }

    .dropdown-title {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-color);
    }

    .dropdown-desc {
        font-size: 0.8rem;
        color: var(--text-light);
        line-height: 1.4;
    }

    .dropdown-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 78, 137, 0.2), transparent);
        margin: 0.75rem 0;
    }

    .dropdown-submenu-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(0, 78, 137, 0.1);
        border-radius: 8px;
        background: rgba(0, 78, 137, 0.05);
        margin: 0.5rem 0 0 0.5rem;
        padding: 0.75rem;
        width: calc(100% - 1rem);
        left: auto;
        right: auto;
        opacity: 0;
        visibility: hidden;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown-submenu.active .dropdown-submenu-content {
        opacity: 1;
        visibility: visible;
        display: block;
        max-height: 500px;
    }

    .dropdown-submenu .dropdown-item {
        padding: 0.75rem;
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .dropdown-submenu .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-submenu .dropdown-item i {
        font-size: 1rem;
    }

    .about-vision .container, .training-content {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header .container {
        padding: 0.3rem;
    }

    .logo img {
        height: 40px;
    }

    .nav.active {
        padding: 1rem;
        z-index: 9999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav.active .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 8px 0;
        font-size: 1rem;
    }

    /* Mobile dropdown styles */

    .mobile-menu-btn {
        font-size: 1.5rem;
        display: block;
    }

    .header .container {
        padding: 15px;
    }

    .logo img {
        height: 50px;
    }

    /* Enhanced Slider Mobile Styles */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slide-actions {
        justify-content: center;
    }

    .slider-nav {
        padding: 0 1rem;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 1.5rem;
    }

    .subsidiary-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Enhanced Subsidiaries Mobile Styles */
    .subsidiaries-section {
        padding: 60px 0;
    }

    .subsidiaries-header h2 {
        font-size: 2.5rem;
    }

    .subsidiaries-header p {
        font-size: 1.1rem;
    }

    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .subsidiary-card {
        padding: 2rem;
    }

    .subsidiary-logo img {
        height: 60px;
    }

    .subsidiary-info h3 {
        font-size: 1.5rem;
    }

    .about-vision, .news, .power-stats, .training {
        padding: 80px 0;
    }

    .about-vision-content h2, .news h2, .power-stats h2, .training-text h2 {
        font-size: 2.5rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-slider {
        margin-top: 0;
    }

    .subsidiaries-overlay {
        position: relative;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* Enhanced Slider Small Mobile Styles */
    .slide-content {
        padding: 0 2rem;
    }

    .content-wrapper {
        gap: 1.5rem;
    }

    .slide-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .slide-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .slide-actions .btn,
    .slide-actions .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .slider-nav {
        padding: 0 0.5rem;
    }

    .slider-dots {
        bottom: 1rem;
        gap: 0.8rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .about-vision-content h2, .news h2, .power-stats h2, .training-text h2 {
        font-size: 2rem;
    }

    .subsidiary-logos {
        grid-template-columns: 1fr;
    }

    .vision-points {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        height: 80vh;
    }

    .about-vision, .news, .power-stats, .training {
        padding: 60px 0;
    }

    /* Enhanced Subsidiaries Small Mobile Styles */
    .subsidiaries-section {
        padding: 40px 0;
    }

    .subsidiaries-header h2 {
        font-size: 2rem;
    }

    .subsidiaries-header p {
        font-size: 1rem;
    }

    .subsidiary-card {
        padding: 1.5rem;
    }

    .subsidiary-logo img {
        height: 50px;
    }

    .subsidiary-info h3 {
        font-size: 1.3rem;
    }

    .subsidiary-info p {
        font-size: 0.9rem;
    }
}

/* Training Page */
.training-courses {
    padding: 100px 0;
}

.training-courses h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

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

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

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

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

.course-content {
    padding: 1.5rem;
}

.contact-form-section {
    padding: 100px 0;
    background-color: var(--light-gray-color);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.training-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.training-article {
    flex: 3;
}

.quick-links {
    flex: 1;
    background-color: var(--light-gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.quick-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 1rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.download-link:hover {
    color: var(--accent-color);
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.training-section {
    margin-bottom: 3rem;
}

.training-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.training-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-list i {
    color: var(--accent-color);
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    flex: 1;
}

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

.card-content {
    flex: 2;
    padding: 2rem;
}

.quick-links-section {
    background-color: var(--light-gray-color);
    padding: 4rem 0;
    text-align: center;
}

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

.download-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.download-card i {
    font-size: 3rem;
    color: var(--accent-color);
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
======================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.about-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.about-hero .stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Company Overview */
.company-overview {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.overview-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Mission, Vision, Values */
.mission-vision-values {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.mvv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.mvv-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.mvv-card ul li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Leadership Team */
.leadership-team {
    padding: 6rem 0;
    background: var(--white-color);
}

.leadership-team h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.position {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Company History */
.company-history {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.company-history h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--accent-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Key Statistics */
.key-statistics {
    padding: 6rem 0;
    background: var(--white-color);
}

.key-statistics h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--light-gray-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* ========================================
   GENERATION PAGE SPECIFIC STYLES
======================================== */

/* Generation Hero Section */
.generation-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.generation-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.generation-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.generation-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.generation-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.generation-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.generation-hero .stat-item {
    text-align: center;
}

.generation-hero .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.generation-hero .stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Generation Overview */
.generation-overview {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.generation-overview .overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.generation-overview .overview-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.generation-overview .overview-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.generation-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Power Stations */
.power-stations {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.power-stations h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.power-stations .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.station-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.station-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.station-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.station-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.station-badge.hydro {
    background: #4CAF50;
    color: var(--white-color);
}

.station-badge.thermal {
    background: #FF9800;
    color: var(--white-color);
}

.station-badge.renewable {
    background: #2196F3;
    color: var(--white-color);
}

.station-content {
    padding: 2rem;
}

.station-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.station-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.station-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.station-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.station-status.operational {
    background: #E8F5E9;
    color: #2E7D32;
}

.station-status.partial {
    background: #FFF3E0;
    color: #EF6C00;
}

.station-status.maintenance {
    background: #FFEBEE;
    color: #C62828;
}

/* Generation Statistics */
.generation-stats {
    padding: 6rem 0;
    background: var(--white-color);
}

.generation-stats h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.stats-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: var(--light-gray-color);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.stats-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.stats-table th {
    background: var(--light-gray-color);
    font-weight: 600;
    color: var(--primary-color);
}

.stats-table td i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.operational {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-badge.partial {
    background: #FFF3E0;
    color: #EF6C00;
}

.status-badge.maintenance {
    background: #FFEBEE;
    color: #C62828;
}

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

.summary-card {
    background: var(--light-gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.summary-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.summary-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.summary-card p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Renewable Energy */
.renewable-energy {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.renewable-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.renewable-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.renewable-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.renewable-projects {
    margin-top: 2rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.project-item i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

.project-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.project-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.renewable-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.contact-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Information */
.contact-info-section {
    padding: 6rem 0;
    background: var(--white-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--light-gray-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

/* Contact Form */
.contact-form-section {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 78, 137, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Regional Offices */
.regional-offices {
    padding: 6rem 0;
    background: var(--white-color);
}

.regional-offices h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.regional-offices .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.office-card {
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.office-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-heading);
}

.office-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-badge.main {
    background: var(--accent-color);
    color: var(--white-color);
}

.office-badge.regional {
    background: var(--primary-color);
    color: var(--white-color);
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.office-info i {
    color: var(--primary-color);
    width: 16px;
}

/* Customer Service */
.customer-service {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.service-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.service-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
    margin-top: 0.25rem;
}

.service-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.service-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--white-color);
}

.map-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.map-container {
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ========================================
   TENDERS PAGE SPECIFIC STYLES
======================================== */

/* Tenders Hero Section */
.tenders-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.tenders-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.tenders-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.tenders-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tenders-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.tenders-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Tender Categories */
.tender-categories {
    padding: 6rem 0;
    background: var(--white-color);
}

.tender-categories h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--light-gray-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Current Tenders */
.current-tenders {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.tenders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.tenders-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.tender-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white-color);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tenders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tender-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.tender-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tender-number {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.tender-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tender-status.open {
    background: #E8F5E9;
    color: #2E7D32;
}

.tender-status.closed {
    background: #FFEBEE;
    color: #C62828;
}

.tender-status.upcoming {
    background: #FFF3E0;
    color: #EF6C00;
}

.tender-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tender-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tender-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tender-details .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.tender-details .detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.tender-actions {
    display: flex;
    gap: 1rem;
}

.tender-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.tender-actions .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Procurement Process */
.procurement-process {
    padding: 6rem 0;
    background: var(--white-color);
}

.procurement-process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

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

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Supplier Registration */
.supplier-registration {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.registration-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.registration-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.registration-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.registration-benefits .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.registration-benefits .benefit-item i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
    margin-top: 0.25rem;
}

.registration-benefits .benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.registration-benefits .benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.registration-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================================
   SELF SERVICE PAGE SPECIFIC STYLES
======================================== */

/* Self Service Hero Section */
.selfservice-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.selfservice-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.selfservice-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.selfservice-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.selfservice-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.selfservice-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Login Section */
.login-section {
    padding: 6rem 0;
    background: var(--white-color);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.login-form-container {
    background: var(--light-gray-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
}

.login-form .form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-form .form-group input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white-color);
}

.login-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 78, 137, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.form-options .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.form-options .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--accent-color);
}

.login-form .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p {
    color: #666;
    margin: 0;
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.register-link:hover {
    color: var(--accent-color);
}

.login-features {
    padding: 2rem;
}

.login-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-list .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-list .feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
}

.feature-list .feature-item span {
    color: #666;
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.services-overview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.app-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.app-feature:hover {
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.app-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
    margin-top: 0.25rem;
}

.app-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.app-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.app-downloads {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn img {
    height: 50px;
    border-radius: 8px;
}

.app-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Help & Support */
.help-support {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.help-support h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.help-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.help-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.help-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.help-link:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

/* ========================================
   CAREERS PAGE SPECIFIC STYLES
======================================== */

/* Careers Hero Section */
.careers-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.careers-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.careers-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.careers-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.careers-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.careers-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Work With Us */
.why-work-with-us {
    padding: 6rem 0;
    background: var(--white-color);
}

.why-work-with-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--light-gray-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Current Openings */
.current-openings {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.current-openings h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.job-filters .filter-btn {
    background: var(--white-color);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.job-filters .filter-btn:hover,
.job-filters .filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.job-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.job-type {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-type.full-time {
    background: #E8F5E9;
    color: #2E7D32;
}

.job-type.part-time {
    background: #FFF3E0;
    color: #EF6C00;
}

.job-type.contract {
    background: #E3F2FD;
    color: #1976D2;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.job-detail i {
    color: var(--primary-color);
    width: 16px;
}

.job-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-actions {
    display: flex;
    gap: 1rem;
}

.job-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* Application Process */
.application-process {
    padding: 6rem 0;
    background: var(--white-color);
}

.application-process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.application-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.application-process .step {
    text-align: center;
    position: relative;
}

.application-process .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
}

.application-process .step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.application-process .step-content p {
    color: #666;
    line-height: 1.6;
}

/* Employee Benefits */
.employee-benefits {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.benefits-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.benefits-list .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefits-list .benefit-item i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
    margin-top: 0.25rem;
}

.benefits-list .benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefits-list .benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Internship Program */
.internship-program {
    padding: 6rem 0;
    background: var(--white-color);
}

.internship-program h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

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

.internship-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.internship-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.internship-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.internship-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.internship-features .feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.internship-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================================
   TRANSMISSION PAGE SPECIFIC STYLES
======================================== */

/* Transmission Hero Section */
.transmission-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.transmission-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.transmission-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.transmission-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.transmission-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.transmission-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Network Overview */
.network-overview {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.stat-card {
    background: var(--light-gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: #666;
    font-weight: 500;
}

/* Transmission Infrastructure */
.transmission-infrastructure {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.infrastructure-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.infrastructure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Distribution Network */
.distribution-network {
    padding: 6rem 0;
    background: var(--white-color);
}

.distribution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.distribution-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.distribution-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.distribution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.distribution-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Grid Modernization */
.grid-modernization {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.modernization-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.modernization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

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

.modernization-card p {
    color: #666;
    line-height: 1.6;
}

/* Regional Operations */
.regional-operations {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.region-card {
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.region-header {
    margin-bottom: 1.5rem;
}

.region-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.region-coverage {
    color: #666;
    font-size: 0.9rem;
}

.region-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.region-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Network Reliability */
.network-reliability {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.reliability-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.reliability-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reliability-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.metric-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.metric-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.metric-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.reliability-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================================
   ENTERPRISES PAGE SPECIFIC STYLES
======================================== */

/* Enhanced Overview Section */
.company-overview .overview-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.company-overview .overview-text {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.company-overview .mandate-quote {
    background: rgba(0, 78, 137, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 2rem;
}

.company-overview .overview-image {
    position: relative;
    z-index: 2;
}

.company-overview .overview-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.company-overview .timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.company-overview .timeline-step {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.company-overview .timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Mobile responsive for enhanced sections */
@media (max-width: 768px) {
    .company-overview .overview-content,
    .capabilities .capabilities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .capabilities .capability-list div {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-steps {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .overview-header h2,
    .section-header h2 {
        font-size: 2.5rem !important;
    }

    .overview-header p,
    .section-header p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .contact-cta .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .overview-header p,
    .section-header p {
        font-size: 1rem !important;
    }

    .capability-item,
    .timeline-step {
        padding: 2rem 1.5rem !important;
    }

    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
}

.company-overview .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.company-overview .timeline-step:nth-child(2) .step-number {
    background: var(--secondary-color);
}

.company-overview .timeline-step:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.company-overview .timeline-step:nth-child(3) .step-number {
    background: var(--accent-color);
}

.company-overview .timeline-step:nth-child(3) {
    border-top-color: var(--accent-color);
}

.company-overview .timeline-step:nth-child(4) .step-number {
    background: #9C27B0;
}

.company-overview .timeline-step:nth-child(4) {
    border-top-color: #9C27B0;
}

.company-overview .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.company-overview .division-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.company-overview .division-features li i {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Enhanced Hero Stats */
.enterprises-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.enterprises-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.enterprises-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.enterprises-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.enterprises-hero .stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Enhanced Service Cards */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.service-card:hover .service-highlight {
    left: 100%;
}

/* Enhanced Project Cards */
.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 6rem 0;
}

.contact-cta h2 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-cta .cta-buttons {
    gap: 1rem;
    margin-top: 2rem;
}

.contact-cta .btn {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--white-color);
    padding: 1rem 2rem;
    transition: var(--transition);
}

.contact-cta .btn:hover {
    background: transparent;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.contact-cta .btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Animation Overrides for Enterprises Page */
.enterprises-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .enterprises-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .enterprises-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Enterprises Hero Section */
.enterprises-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.enterprises-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.enterprises-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.enterprises-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.enterprises-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.enterprises-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Overview */
.company-overview {
    padding: 6rem 0;
    background: var(--white-color);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.overview-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Services Portfolio */
.services-portfolio {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.service-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Project Portfolio */
.project-portfolio {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.project-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: var(--white-color);
}

.project-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.project-details {
    padding: 2rem;
}

.project-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Capabilities */
.capabilities {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

.capabilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.capabilities-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.capabilities-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.capability-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.capability-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.capability-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.capability-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.capabilities-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Quality & Safety */
.quality-safety {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.standard-card {
    background: var(--light-gray-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.standard-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.standard-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.standard-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

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

.standard-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.cta-buttons .btn {
    flex: 1;
    text-align: center;
}

.cta-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================================
   POWERTEL PAGE SPECIFIC STYLES
======================================== */

/* Powertel Hero Section */
.powertel-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.powertel-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.powertel-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.powertel-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.powertel-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.powertel-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Network Coverage */
.network-coverage {
    padding: 6rem 0;
    background: var(--white-color);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.coverage-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coverage-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.coverage-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.coverage-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-stat .stat-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.coverage-stat .stat-content h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.coverage-stat .stat-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.coverage-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Technology Infrastructure */
.technology-infrastructure {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.tech-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

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

.tech-card p {
    color: #666;
    line-height: 1.6;
}

/* Customer Success */
.customer-success {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.success-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-image {
    height: 200px;
    overflow: hidden;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.success-content {
    padding: 2rem;
}

.success-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.success-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.success-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.success-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   HOSPITALITY PAGE SPECIFIC STYLES
======================================== */

/* Hospitality Hero Section */
.hospitality-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hospitality-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hospitality-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.hospitality-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hospitality-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hospitality-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Accommodation */
.accommodation {
    padding: 6rem 0;
    background: var(--white-color);
}

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

.accommodation-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.accommodation-content {
    padding: 2rem;
}

.accommodation-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.accommodation-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.room-features li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.room-info {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.room-capacity,
.room-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.room-capacity i,
.room-price i {
    color: var(--accent-color);
}

.amenities-section {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
}

.amenities-section strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.room-actions {
    margin-top: 1.5rem;
}

.room-actions .btn {
    width: 100%;
}

.no-rooms-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-color);
}

.no-rooms-message i {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Reservation Modal */
.reservation-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.reservation-modal .modal-content {
    background-color: var(--white-color);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.reservation-modal h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.reservation-modal .form-group {
    margin-bottom: 1.5rem;
}

.reservation-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.reservation-modal .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.reservation-modal .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.reservation-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.reservation-total {
    background: var(--light-gray-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.reservation-total strong {
    color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.text-warning {
    color: #ffc107;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
    .reservation-modal .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }

    .reservation-modal .form-row {
        grid-template-columns: 1fr;
    }

    .room-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Conference Facilities */
.conference-facilities {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.facility-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.facility-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

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

.facility-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--light-gray-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Hospitality Services */
.hospitality-services {
    padding: 6rem 0;
    background: var(--white-color);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.services-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.service-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.services-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================================
   LIBRARY PAGE SPECIFIC STYLES
======================================== */

/* Library Hero Section */
.library-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.library-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.library-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.library-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.library-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.library-hero .hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Library Overview */
.library-overview {
    padding: 6rem 0;
    background: var(--white-color);
}

/* Collections */
.collections {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.collection-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.collection-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.collection-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.collection-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.collection-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.collection-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.collection-features li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Digital Resources */
.digital-resources {
    padding: 6rem 0;
    background: var(--white-color);
}

.digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.digital-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.digital-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.digital-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.digital-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.digital-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white-color);
}

.digital-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.digital-feature .feature-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.digital-feature .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.digital-feature .feature-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.digital-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Library Services */
.library-services {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

/* ========================================
   TRAINING PAGE SPECIFIC STYLES
======================================== */

/* Training Hero Section */
.training-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.training-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-highlight i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-highlight h3 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-highlight p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* News Hero Section */
.news-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.news-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.news-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.news-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.news-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.news-hero .stat-item {
    text-align: center;
}

.news-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.news-hero .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Course Filter Section */
.course-filter-section {
    padding: 4rem 0;
    background: var(--light-gray-color);
}

.course-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-tab {
    background: var(--white-color);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Training Main Content */
.training-main {
    padding: 4rem 0;
}

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

.course-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

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

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

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

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

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray-color);
    border-radius: 8px;
}

.course-duration,
.course-level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.course-duration i,
.course-level i {
    color: var(--primary-color);
}

.course-modules {
    list-style: none;
    margin-bottom: 2rem;
}

.course-modules li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.course-modules li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.course-modules li:last-child {
    border-bottom: none;
}

.course-actions {
    display: flex;
    gap: 1rem;
}

.course-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-gray-color);
}

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

.testimonial-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white-color);
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.cta-text .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.cta-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

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

.cta-actions .download-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-actions .download-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-actions .download-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

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

.cta-actions .download-card small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.cta-buttons .btn {
    flex: 1;
    text-align: center;
}

/* Responsive Design for Training Page */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .course-filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tab {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .course-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* About Page Mobile Styles */
    .about-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 80px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Page Mobile Styles */
    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Careers Page Mobile Styles */
    .careers-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .careers-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .application-process .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .internship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .benefits-list .benefit-item {
        padding: 1rem;
    }
    
    .benefits-list .benefit-item i {
        font-size: 1.5rem;
    }
    
    /* Transmission Page Mobile Styles */
    .transmission-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .transmission-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
    .distribution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modernization-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .reliability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .region-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reliability-metrics {
        gap: 1rem;
    }
    
    .metric-item {
        padding: 1rem;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-content h4 {
        font-size: 1.5rem;
    }
    
    /* Enterprises Page Mobile Styles */
    .enterprises-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .enterprises-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Powertel Page Mobile Styles */
    .powertel-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .powertel-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats {
        gap: 1rem;
    }
    
    .coverage-stat {
        padding: 1rem;
    }
    
    .coverage-stat .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .coverage-stat .stat-content h4 {
        font-size: 1.5rem;
    }
    
    /* Hospitality Page Mobile Styles */
    .hospitality-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hospitality-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Library Page Mobile Styles */
    .library-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .library-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .digital-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ENHANCED BUTTON STYLES
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--white-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    text-align: center;
    white-space: nowrap;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-secondary);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-red {
    background: var(--gradient-accent);
    color: var(--white-color);
}

.btn-red:hover {
    background: linear-gradient(135deg, #E55A5A, #CC4A4A);
}

.btn-outline-white {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-outline-white:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
    min-height: 36px;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-xxl);
    font-size: 1.125rem;
    min-height: 56px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

.btn-icon.btn-sm {
    width: 36px;
    height: 36px;
}

.btn-icon.btn-lg {
    width: 56px;
    height: 56px;
}

/* Loading button state */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   MODERN ANIMATIONS
======================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Animation utility classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Hover animations */
.hover-lift {
    transition: var(--transition);
}

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

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: var(--transition);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }
.gap-xxl { gap: var(--spacing-xxl); }

.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

.rounded { border-radius: var(--border-radius); }
.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: 50%; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-error { color: var(--error-color); }
.text-white { color: var(--white-color); }
.text-muted { color: var(--text-light); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-success { background-color: var(--success-color); }
.bg-warning { background-color: var(--warning-color); }
.bg-error { background-color: var(--error-color); }
.bg-white { background-color: var(--white-color); }
.bg-light { background-color: var(--light-gray-color); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-auto { width: auto; }
.h-auto { height: auto; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* =====================================================
   MOBILE-FIRST RESPONSIVE ENHANCEMENTS (site-wide)
   - Fluid media
   - Mobile navigation & dropdowns
   - Typography and spacing
   - Hero slider adjustments
   - Tables/grids handling on small screens
   - Footer spacing
===================================================== */

/* Fluid media */
img, video, svg, canvas { max-width: 100%; height: auto; }

/* Slightly wider container breathing room on narrow screens */
.container { width: min(92%, 1200px); }


/* Typography and spacing tweaks */
html { font-size: 100%; }
@media (max-width: 768px) {
	html { font-size: 93.75%; }
	h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
	h2 { font-size: clamp(1.5rem, 5vw, 1.75rem); }
	h3 { font-size: clamp(1.25rem, 4.5vw, 1.5rem); }
	p, li { line-height: 1.7; }
	.header .container { padding: 0.5rem 0.75rem; }
}

/* Hero slider adjustments */
@media (max-width: 768px) {
	.hero-slider { height: 70vh; }
	.slide-content, .content-wrapper { padding: 0 1rem; }
	.slide-content { display: flex; align-items: center; justify-content: center; text-align: center; }
	.slide-actions { justify-content: center; flex-wrap: wrap; }
	.slider-arrows, .nav-prev, .nav-next { display: none !important; }
}

/* Tables: horizontal scroll on small screens */
.stats-table-wrapper { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.stats-table { min-width: 600px; }

/* Grids stack on mobile */
@media (max-width: 768px) {
	.news-grid, .footer-columns, .about-content, .stats-wrapper { display: grid; grid-template-columns: 1fr; gap: 1rem; }
	.footer-columns { gap: 1.25rem; }
}

/* Footer spacing on small screens */
@media (max-width: 768px) {
	footer .container { padding: 0 1rem; }
}

/* Generation page specific mobile fixes */
@media (max-width: 768px) {
	/* Stack overview and renewable content sections */
	.generation-overview .overview-content,
	.renewable-energy .renewable-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	/* Make station cards stack properly */
	.stations-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	/* Make station images fully responsive */
	.station-image {
		height: 200px;
	}
	
	.station-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	/* Adjust hero section for mobile */
	.generation-hero {
		min-height: 60vh;
	}
	
	.generation-hero .hero-text h1 {
		font-size: 2.5rem;
	}
	
	.generation-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	/* Make generation features stack */
	.generation-features {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	
	/* Make renewable projects stack */
	.renewable-projects {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}
