/* Full VC Message Page Styles */
.vc-full-message-section {
    --orange-primary: #ff6b35;
    --orange-secondary: #f7931e;
    --blue-primary: #003366;
    --blue-secondary: #004080;
    --white: #ffffff;
    --text-light: #f8f9fa;
    --dark: #333333;
    --light-gray: #f8f9fa;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    
    padding: 50px 0;
    margin: 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
    isolation: isolate;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

.vc-full-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 51, 102, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.vc-full-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.vc-full-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.vc-full-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.vc-full-subtitle {
    font-size: 1.1rem;
    color: var(--blue-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

.vc-full-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
}

.vc-full-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--orange-primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--orange-primary);
}

.vc-full-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.vc-full-profile-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: sticky;
    top: 120px;
    text-align: center;
}

.vc-full-profile-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
}

.vc-summary-photo {
    width: 150px;
    height: 190px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.vc-summary-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.vc-summary-title {
    font-size: 0.9rem;
    color: var(--orange-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.vc-back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--orange-primary);
    font-family: Arial, sans-serif;
}

.vc-back-button:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.vc-full-message-area {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 51, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.vc-full-message-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-secondary));
    z-index: 1;
}

.vc-full-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: justify;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.vc-full-paragraph:hover {
    border-left-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.02);
    padding-left: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.vc-full-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 5px solid var(--orange-primary);
    position: relative;
}

.vc-full-highlight::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 5px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.vc-signature-section {
    margin-top: 3rem;
    text-align: right;
    padding: 2rem;
    background: rgba(0, 51, 102, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.vc-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.vc-signature-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin-bottom: 0.25rem;
    font-family: Arial, sans-serif;
}

.vc-signature-title {
    font-size: 0.9rem;
    color: var(--blue-primary);
    font-weight: 500;
    font-family: Arial, sans-serif;
}

.vc-achievements-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.vc-achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    z-index: 1;
}

.vc-achievements-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: Arial, sans-serif;
}

.vc-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vc-achievement-card {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--orange-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vc-achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--orange-primary);
    border-radius: 0 0 0 50%;
    opacity: 0.1;
}

.vc-achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    background: rgba(255, 107, 53, 0.08);
}

.vc-achievement-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.vc-achievement-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.vc-achievement-desc {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

/* Animation classes */
.vc-fade-in-up {
    animation: vcFadeInUp 0.8s ease-out;
}

.vc-fade-in-left {
    animation: vcFadeInLeft 0.8s ease-out;
}

.vc-fade-in-right {
    animation: vcFadeInRight 0.8s ease-out;
}

@keyframes vcFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vcFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vcFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .vc-full-message-section {
        padding: 35px 0;
        margin-bottom: 30px;
    }

    .vc-full-title {
        font-size: 2.2rem;
    }

    .vc-full-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vc-full-profile-summary {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .vc-full-message-area {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .vc-full-message-section {
        padding: 25px 0;
        margin-bottom: 25px;
    }

    .vc-full-container {
        padding: 0 15px;
    }

    .vc-full-title {
        font-size: 1.9rem;
    }

    .vc-full-subtitle {
        font-size: 1rem;
    }

    .vc-full-profile-summary {
        padding: 1.5rem;
    }

    .vc-summary-photo {
        width: 120px;
        height: 150px;
    }

    .vc-full-message-area {
        padding: 1.5rem;
    }

    .vc-full-paragraph {
        font-size: 1rem;
        line-height: 1.7;
    }

    .vc-achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vc-achievement-card {
        padding: 1.25rem;
    }

    .vc-signature-section {
        padding: 1.5rem;
        text-align: center;
    }

    .vc-signature {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .vc-full-message-section {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .vc-full-container {
        padding: 0 10px;
    }

    .vc-full-title {
        font-size: 1.7rem;
    }

    .vc-full-profile-summary {
        padding: 1.25rem;
    }

    .vc-summary-photo {
        width: 100px;
        height: 130px;
    }

    .vc-full-message-area {
        padding: 1.25rem;
    }

    .vc-full-paragraph {
        font-size: 0.95rem;
        padding-left: 0.5rem;
    }

    .vc-full-paragraph:hover {
        padding-left: 1rem;
    }

    .vc-achievements-section {
        padding: 1.5rem;
    }

    .vc-achievement-card {
        padding: 1rem;
    }

    .vc-signature {
        font-size: 1.25rem;
    }
}

/* Extra small screens - ensure ticker space */
@media (max-width: 480px) {
    .vc-full-message-section {
        padding: 15px 0;
        margin-bottom: 50px;
        padding-bottom: 30px;
    }
}

/* Ensure no conflicts with existing components */
.vc-full-message-section {
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

.vc-full-message-section * {
    box-sizing: border-box;
}

/* Integration with ticker */
body.has-ticker .vc-full-message-section {
    margin-bottom: 90px;
}

/* Override any potential navbar conflicts */
.vc-full-message-section .navbar {
    position: relative !important;
    z-index: auto !important;
}

/* Ensure navbar styles don't interfere with VC content */
.vc-full-message-section h1,
.vc-full-message-section h2,
.vc-full-message-section h3,
.vc-full-message-section h4 {
    color: inherit !important;
    background: inherit !important;
    -webkit-background-clip: inherit !important;
    -webkit-text-fill-color: inherit !important;
}

.vc-full-title {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}