/* Enterprises Page - Modern Redesign */

/* Hero Section - Enhanced */
.enterprises-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .enterprises-hero {
        min-height: 350px;
    }
}

.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);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 2rem;
}

@media screen and (max-width: 768px) {
    .enterprises-hero .hero-content {
        min-height: 350px;
        padding: 2rem 1.5rem;
    }
}

.enterprises-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

@media screen and (max-width: 992px) {
    .enterprises-hero .hero-text h1 {
        font-size: 2.75rem;
    }
}

@media screen and (max-width: 768px) {
    .enterprises-hero .hero-text h1 {
        font-size: 2.25rem;
    }
}

.enterprises-hero .hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@media screen and (max-width: 768px) {
    .enterprises-hero .hero-subtitle {
        font-size: 1.15rem;
    }
}

.enterprises-hero .hero-description {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 850px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media screen and (max-width: 768px) {
    .enterprises-hero .hero-description {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

.enterprises-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.enterprises-hero .stat-item {
    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: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.enterprises-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.enterprises-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.5rem;
    display: block;
}

.enterprises-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Overview Section - Powertel Style */
.company-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white-color) 50%, #f8f9fa 100%);
    position: relative;
}

.overview-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.overview-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.visual-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 6s ease-in-out infinite;
}

.visual-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-image:hover img {
    transform: scale(1.12);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.3) 0%, rgba(0, 102, 163, 0.2) 100%);
    z-index: 1;
}

.visual-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    background: var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 4s ease-in-out infinite 1s;
}

.visual-badge:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.overview-content-section {
    padding-left: 2rem;
}

.content-header {
    margin-bottom: 2.5rem;
}

.content-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
}

.header-accent {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 3px;
    margin-top: 1rem;
    animation: expandWidth 1s ease-out 0.8s forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.content-main {
    margin-bottom: 2.5rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.content-main p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-main p:nth-child(2) {
    animation-delay: 0.7s;
}

.content-main .external-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.content-main .external-link i {
    transition: transform 0.4s ease;
}

.content-main .external-link:hover i {
    transform: translateX(5px) scale(1.1);
}

.content-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.25);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.35);
    background: #003d6b;
    border-color: #003d6b;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.25);
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.overview-mandate-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
    background: var(--white-color);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 78, 137, 0.1);
    border: 1px solid rgba(0, 78, 137, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.overview-mandate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 78, 137, 0.03), transparent);
    transition: left 0.8s ease;
}

.overview-mandate-section:hover::before {
    left: 100%;
}

.overview-mandate-section:hover {
    box-shadow: 0 25px 70px rgba(0, 78, 137, 0.15);
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 78, 137, 0.2);
}

.mandate-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandate-icon-box {
    width: 100px;
    height: 100px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid var(--primary-color);
}

.mandate-icon-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-mandate-section:hover .mandate-icon-box::before {
    opacity: 1;
}

.overview-mandate-section:hover .mandate-icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 78, 137, 0.25);
    border-color: var(--secondary-color);
}

.mandate-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.overview-mandate-section:hover .mandate-icon-box i {
    color: var(--white-color);
    transform: scale(1.1);
}

.mandate-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.mandate-content p {
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    margin: 0;
}

/* Divisions Section */
.divisions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.division-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInUp 0.8s ease forwards;
}

.division-card:nth-child(1) { animation-delay: 0.2s; }
.division-card:nth-child(2) { animation-delay: 0.4s; }
.division-card:nth-child(3) { animation-delay: 0.6s; }
.division-card:nth-child(4) { animation-delay: 0.8s; }

.division-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 78, 137, 0.15);
    border-color: var(--primary-color);
}

.division-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;
    color: var(--white-color);
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 4s ease-in-out infinite;
}

.division-card:nth-child(1) .division-icon { animation-delay: 0s; }
.division-card:nth-child(2) .division-icon { animation-delay: 0.3s; }
.division-card:nth-child(3) .division-icon { animation-delay: 0.6s; }
.division-card:nth-child(4) .division-icon { animation-delay: 0.9s; }

.division-card:hover .division-icon {
    transform: scale(1.15) rotate(10deg);
    animation-play-state: paused;
}

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

.division-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

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

/* Service Accordion Cards - Enhanced */
.services-accordion {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-accordion-card {
    background: var(--white-color);
    border: 2px solid rgba(0, 78, 137, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    backdrop-filter: blur(10px);
    position: relative;
}

.service-accordion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.service-accordion-card:hover::before,
.service-accordion-card.active::before {
    height: 100%;
}

.service-accordion-card:nth-child(1) { animation-delay: 0.1s; }
.service-accordion-card:nth-child(2) { animation-delay: 0.2s; }
.service-accordion-card:nth-child(3) { animation-delay: 0.3s; }
.service-accordion-card:nth-child(4) { animation-delay: 0.4s; }
.service-accordion-card:nth-child(5) { animation-delay: 0.5s; }
.service-accordion-card:nth-child(6) { animation-delay: 0.6s; }
.service-accordion-card:nth-child(7) { animation-delay: 0.7s; }
.service-accordion-card:nth-child(8) { animation-delay: 0.8s; }

.service-accordion-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(0, 78, 137, 0.2);
}

.service-accordion-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 78, 137, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.service-accordion-header {
    padding: 1.25rem 1.5rem;
    background: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.service-accordion-card.active .service-accordion-header {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    color: var(--white-color);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-accordion-header:hover {
    background: var(--light-gray-color);
}

.service-accordion-card.active .service-accordion-header:hover {
    background: linear-gradient(135deg, #003366, var(--primary-color));
}

.service-accordion-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.service-accordion-card.active .service-accordion-title {
    color: var(--white-color);
}

.service-accordion-title i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-accordion-card.active .service-accordion-title i {
    color: var(--white-color);
}

.service-accordion-icon {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-accordion-card.active .service-accordion-icon {
    color: var(--white-color);
    transform: rotate(180deg) scale(1.1);
}

.service-accordion-header:hover .service-accordion-icon {
    transform: scale(1.15);
}

.service-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.service-accordion-body.show {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
}

.service-accordion-body p {
    padding: 0 2rem 2rem 2rem;
    color: #555;
    line-height: 1.9;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 400;
}

.service-accordion-body p:first-child {
    margin-top: 0;
    padding-top: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0 2rem 2rem 2rem;
    margin: 0;
    margin-top: 1.5rem;
    padding-top: 0;
}

.service-list li {
    color: #555;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.85;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.service-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white-color);
    font-weight: bold;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--accent-color), #E55A5A);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.service-list li:hover::before {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

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

.vision-header {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.vision-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-color);
}

.vision-header-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.vision-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vision-text {
    color: var(--white-color);
}

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

.vision-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vision-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0;
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

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

.opportunity-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 2rem;
}

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

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

.opportunity-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-highlight {
    background: var(--accent-color);
}

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

.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.facility-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.facility-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.facility-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.facility-image {
    position: relative;
}

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

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

.facility-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.facility-stat .stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.facility-stat .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

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

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

.cta-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Staggered entrance animations */
.overview-hero {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.overview-visual {
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.overview-content-section {
    animation: fadeInRight 1s ease-out 0.7s both;
}

.visual-badge {
    animation: slideInDown 0.8s ease-out 0.8s both, pulse 2s ease-in-out 1.5s infinite;
}

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

.overview-mandate-section {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.mandate-icon-box {
    animation: scaleIn 0.8s ease-out 0.9s both;
}

.mandate-content {
    animation: fadeInRight 0.8s ease-out 1.1s both;
}

@media screen and (max-width: 992px) {
    .overview-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .overview-visual {
        min-height: 400px;
        order: -1;
    }
    
    .visual-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .overview-content-section {
        padding-left: 0;
    }
    
    .content-header h2 {
        font-size: 2.5rem;
    }
    
    .lead-paragraph {
        font-size: 1.15rem;
    }
    
    .content-main p {
        font-size: 1rem;
    }
    
    .overview-mandate-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .mandate-visual {
        justify-content: flex-start;
    }
    
    .mandate-icon-box {
        width: 100px;
        height: 100px;
    }
    
    .mandate-icon-box i {
        font-size: 2.5rem;
    }
    
    .mandate-content h3 {
        font-size: 1.75rem;
    }
    
    .mandate-content p {
        font-size: 1rem;
    }
    .overview-content,
    .facility-grid,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-image,
    .facility-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .enterprises-hero {
        min-height: 350px;
    }
    
    .enterprises-hero .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .enterprises-hero .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .enterprises-hero .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .enterprises-hero .hero-description {
        font-size: 1rem;
    }
    
    .enterprises-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .company-overview,
    .divisions-section,
    .services-section,
    .vision-section,
    .facility-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .overview-text h2,
    .section-header h2,
    .vision-card h2,
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .divisions-grid,
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-accordion {
        gap: 0.75rem;
    }
    
    .vision-header {
        padding: 2.5rem 1.5rem;
    }
    
    .vision-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .vision-icon-wrapper {
        margin: 0 auto;
    }
    
    .vision-text h2 {
        font-size: 2rem;
    }
    
    .vision-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .facility-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mandate-icon-box {
        width: 90px;
        height: 90px;
    }
    
    .mandate-icon-box i {
        font-size: 2.25rem;
    }
    
    .service-accordion-body p,
    .service-list {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .service-accordion-body p {
        padding-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .service-list {
        padding-bottom: 1.5rem;
    }
    
    .service-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .service-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

/* Enhanced Gallery Section for Enterprises */
.department-gallery {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white-color) 0%, #f8f9fa 100%);
    position: relative;
}

.department-gallery .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.department-gallery .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.department-gallery .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.department-gallery .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-container {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.gallery-item {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.gallery-item:first-child {
    padding-left: 0;
}

.gallery-item:last-child {
    padding-right: 0;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem;
    color: var(--white-color);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white-color);
    border: 2px solid rgba(0, 78, 137, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gallery-nav-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 78, 137, 0.3);
}

.gallery-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 78, 137, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot:hover {
    background: rgba(0, 78, 137, 0.4);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

@media screen and (max-width: 992px) {
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .gallery-item {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .gallery-item img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .department-gallery {
        padding: 4rem 0;
    }
    
    .department-gallery .section-header h2 {
        font-size: 2.25rem;
    }
    
    .department-gallery .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
}

/* Enhanced Section Headers */
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

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

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
        padding-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Additional Visual Enhancements */
.enterprises-hero .hero-background img {
    animation: subtleZoom 20s ease-in-out infinite;
}

@keyframes subtleZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Improved focus states for accessibility */
.service-accordion-header:focus,
.gallery-nav-btn:focus,
.cta-button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}
