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

/* Hero Section */
.assets-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 32, 68, 0.95) 100%), url('/images/assets-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 100px;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

   

.assets-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

    .assets-hero h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: var(--coral-letter);
    }

/* Main Content Section */
.assets-main-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.assets-header-card {
    background: linear-gradient(135deg, var(--coral-letter) 0%, rgba(201, 139, 122, 0.8) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(201, 139, 122, 0.3);
    position: relative;
    overflow: hidden;
}

    .assets-header-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
    }

.card-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    line-height: 80px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .card-icon i {
        font-size: 2.5rem;
        color: var(--coral-letter);
    }

.assets-subtitle {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.assets-image-wrapper {
    margin-bottom: 50px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

    .image-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 4px solid transparent;
        border-image: linear-gradient(135deg, var(--dark-bg), var(--coral-letter)) 1;
        pointer-events: none;
        z-index: 2;
    }

.assets-main-image {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image-frame:hover .assets-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 32, 68, 0.1), rgba(201, 139, 122, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

/* Content Section */
.assets-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--dark-bg);
}

.content-intro {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.intro-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-bg), rgba(26, 32, 68, 0.9));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lead-text {
    color: var(--brown-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Feature Items */
.content-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: rgba(26, 32, 68, 0.05);
        transform: translateX(10px);
    }

.feature-bullet {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--dark-bg), var(--coral-letter));
    border-radius: 50%;
    position: relative;
}

    .feature-bullet::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        border: 2px solid var(--coral-letter);
        border-radius: 50%;
        opacity: 0.3;
    }

.feature-item p {
    color: var(--brown-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Highlight Banner */
.highlight-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 32, 68, 0.95) 100%);
    padding: 30px 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 32, 68, 0.3);
}

.banner-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--coral-letter);
}

.assets-highlight {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
}

/* Company Badge */
.company-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(201, 139, 122, 0.1), rgba(201, 139, 122, 0.05));
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--coral-letter);
}

.badge-icon {
    font-size: 2rem;
    color: var(--coral-letter);
}

.assets-company {
    color: var(--coral-letter);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 1px;
}

.mission-statement {
    color: var(--brown-text);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
    padding: 20px;
    background: rgba(139, 115, 85, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--coral-letter);
}

/* Strategic Priorities */
.strategic-priorities-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.priorities-header {
    position: relative;
    padding: 40px 0;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-bg), var(--coral-letter));
    border-radius: 2px;
}

.strategic-priorities-section .section-title {
    color: var(--coral-letter);
    font-size: 3rem;
    margin-bottom: 20px;
}

.strategic-priorities-section .section-divider {
    background: linear-gradient(90deg, var(--dark-bg), var(--coral-letter));
    height: 4px;
    width: 120px;
    margin: 20px auto;
}

.section-subtitle {
    color: var(--brown-text);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: none;
    margin-top: 15px;
}

/* Priority Sections */
.priority-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.priority-section-alt {
    background-color: var(--white);
}

.priority-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.priority-section-alt .priority-card {
    background: var(--light-bg);
}

.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.priority-number {
    position: absolute;
    top: -25px;
    right: 50px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-bg), rgba(26, 32, 68, 0.9));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(26, 32, 68, 0.3);
}

    .priority-number.coral {
        background: linear-gradient(135deg, var(--coral-letter), rgba(201, 139, 122, 0.8));
        box-shadow: 0 10px 25px rgba(201, 139, 122, 0.3);
    }

.priority-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.priority-image-container:hover .priority-image {
    transform: scale(1.08);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--dark-bg);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

    .image-badge.coral {
        background: var(--coral-letter);
    }

.priority-content {
    padding: 20px 0;
}

.priority-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

    .priority-item.single {
        margin-bottom: 0;
    }

.priority-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-bg), rgba(26, 32, 68, 0.9));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .priority-icon.coral {
        background: linear-gradient(135deg, var(--coral-letter), rgba(201, 139, 122, 0.8));
    }

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

.priority-item:hover .priority-icon {
    transform: rotate(360deg);
}

.priority-content h3 {
    color: var(--brown-text);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    text-transform: none;
}

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

    .assets-cta-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;
    }

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

    .cta-content h2 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        margin-bottom: 30px;
        font-weight: 300;
        text-transform: none;
    }

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-cta.coral {
        background: var(--coral-letter);
        color: var(--white);
        box-shadow: 0 10px 30px rgba(201, 139, 122, 0.4);
    }

    .btn-cta::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, height 0.6s;
    }

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

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(201, 139, 122, 0.6);
        color: var(--white);
    }

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

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

    .assets-subtitle {
        font-size: 1.8rem;
    }

    .assets-header-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

        .card-icon i {
            font-size: 2rem;
        }

    .assets-content {
        padding: 30px 25px;
    }

    .content-intro {
        flex-direction: column;
        gap: 15px;
    }

    .priority-card {
        padding: 30px 20px;
    }

    .priority-number {
        top: -20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .priority-content h3 {
        font-size: 1rem;
    }

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

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

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 544px) {
    .assets-hero h1 {
        font-size: 1.5rem;
    }

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

    .assets-content {
        padding: 20px;
    }

    .highlight-banner {
        padding: 20px;
    }

    .assets-highlight {
        font-size: 1rem;
    }

    .mission-statement {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}
