﻿/* ========================================
   HOME PAGE STYLES
   Using Navy Blue (#1a2044) and Coral (#c98b7a)
   ======================================== */

:root {
    --navy-blue: #1a2044;
    --coral: #c98b7a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-color: #4a4a4a;
}

/* ========================================
   HOME PAGE STYLES
   Using Navy Blue (#1a2044) and Coral (#c98b7a)
   ======================================== */

:root {
    --navy-blue: #1a2044;
    --coral: #c98b7a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-color: #4a4a4a;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 150px 20px 120px;
    text-align: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 68, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Accessibility: fallback for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .hero-section {
        background: linear-gradient(rgba(26, 32, 68, 0.7), rgba(26, 32, 68, 0.7)), url('/images/hero-background.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero-logo {
    max-width: 220px;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 60px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-logo {
    max-width: 220px;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 60px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

/* Simple Value Cards */
.value-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    width: 250px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-top: 4px solid var(--coral);
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(201, 139, 122, 0.4);
    }

.value-letter {
    width: 80px;
    height: 80px;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(26, 32, 68, 0.3);
}

.value-text {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hero-chevron {
    margin-top: 60px;
    animation: bounce 2s infinite;
}

    .hero-chevron i {
        color: var(--coral);
        filter: drop-shadow(0 5px 10px rgba(201, 139, 122, 0.5));
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

.video-section .lead {
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

    .video-section .lead strong {
        color: var(--navy-blue);
        font-weight: 700;
    }

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    color: var(--coral);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-blue), var(--coral));
    border-radius: 2px;
    margin: 20px 0 30px;
}

.content-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

    .content-image:hover {
        transform: scale(1.05);
    }

.vision-mission-section p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Core Values Section */

.core-values-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 50%, var(--light-bg) 100%);
}

.core-value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    min-height: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--navy-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .core-value-card::before {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(201, 139, 122, 0.1), transparent);
        transition: top 0.4s ease;
    }

    .core-value-card:hover::before {
        top: 0;
    }

    .core-value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(26, 32, 68, 0.2);
        border-top-color: var(--coral);
    }

    .core-value-card h3 {
        color: var(--navy-blue);
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        z-index: 1;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
.btn-know-more {
    display: inline-block;
    padding: 12px 35px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 139, 122, 0.3);
    position: relative;
    z-index: 1;
}

    .btn-know-more:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(201, 139, 122, 0.5);
        color: var(--white);
    }

/* ========================================
   STRATEGIC PRIORITIES SECTION
   ======================================== */

.strategic-priorities-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, rgba(26, 32, 68, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.strategic-priorities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(201, 139, 122, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 139, 122, 0.03) 87.5%, rgba(201, 139, 122, 0.03)),
        linear-gradient(150deg, rgba(201, 139, 122, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 139, 122, 0.03) 87.5%, rgba(201, 139, 122, 0.03)),
        linear-gradient(30deg, rgba(201, 139, 122, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 139, 122, 0.03) 87.5%, rgba(201, 139, 122, 0.03)),
        linear-gradient(150deg, rgba(201, 139, 122, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(201, 139, 122, 0.03) 87.5%, rgba(201, 139, 122, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.strategic-priorities-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.strategic-priorities-section .section-divider {
    background: linear-gradient(90deg, var(--coral), var(--white), var(--coral));
    position: relative;
    z-index: 1;
}

.section-intro {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Priority Card Link Wrapper */
.priority-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

    .priority-card-link:hover {
        text-decoration: none;
    }

/* Priority Card */
.priority-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
    cursor: pointer;
}

    /* Gradient border effect on hover */
    .priority-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(135deg, var(--coral), transparent, var(--coral));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.priority-card-link:hover .priority-card::before {
    opacity: 1;
}

.priority-card-link:hover .priority-card {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 139, 122, 0.2);
    border-color: rgba(201, 139, 122, 0.3);
}

/* Priority Icon */
.priority-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--coral), #d49f8e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(201, 139, 122, 0.3);
    transition: all 0.4s ease;
}

.priority-card-link:hover .priority-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 139, 122, 0.5);
}

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

/* Priority Content */
.priority-content {
    flex: 1;
    position: relative;
}

.priority-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.priority-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), #d49f8e);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(201, 139, 122, 0.3);
}

.priority-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 15px 0;
    text-align: justify;
}

/* Arrow indicator */
.priority-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--coral);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.priority-card-link:hover .priority-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .priority-card {
        flex-direction: column;
        text-align: center;
    }

    .priority-icon {
        margin: 0 auto;
    }

    .priority-title {
        justify-content: center;
    }

    .priority-description {
        text-align: center;
    }

    .priority-arrow {
        position: static;
        display: block;
        margin-top: 10px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .strategic-priorities-section {
        padding: 60px 20px;
    }

    .priority-title {
        font-size: 1.15rem;
    }

    .priority-icon {
        width: 60px;
        height: 60px;
    }

        .priority-icon i {
            font-size: 1.5rem;
        }
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, rgba(26, 32, 68, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

    .about-section .section-title {
        color: var(--white);
        position: relative;
        z-index: 1;
    }

    .about-section .section-divider {
        background: linear-gradient(90deg, var(--coral), var(--white));
        margin: 20px auto 30px;
        position: relative;
        z-index: 1;
    }

    .about-section .lead {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.2rem;
        line-height: 2;
        max-width: 900px;
        margin: 0 auto 30px;
        position: relative;
        z-index: 1;
    }

    .about-section .btn-know-more {
        position: relative;
        z-index: 1;
    }

/* Footer Contact */
.footer-contact {
    background: var(--light-bg);
    padding: 80px 0;
}

    .footer-contact h3 {
        color: var(--navy-blue);
        font-weight: 700;
        margin-bottom: 25px;
        font-size: 1.4rem;
    }

.social-icons a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .social-icons a:hover {
        transform: translateY(-5px);
        background: var(--coral);
        box-shadow: 0 5px 15px rgba(201, 139, 122, 0.4);
    }

.contact-info {
    color: var(--text-color);
}

    .contact-info .mb-3 {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .contact-info i {
        color: var(--navy-blue);
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .contact-info p {
        margin: 0;
        line-height: 1.6;
        font-size: 1rem;
    }

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .value-card {
        width: 230px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .value-cards {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .core-value-card {
        min-height: 200px;
        padding: 40px 25px;
    }

        .core-value-card h3 {
            font-size: 1.1rem;
        }

    .video-section .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 544px) {
    .hero-section {
        padding: 100px 15px 80px;
        min-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

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

    .value-card {
        width: 220px;
        padding: 35px 25px;
    }

    .value-letter {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .value-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn-know-more {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .video-section .lead {
        font-size: 1.1rem;
    }
}
