/* Component Styles */



/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Info Bar */
.info-bar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--medium-gray);
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.info-item:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--medium-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 166, 255, 0.1);
    border-radius: 50%;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Image Badge */
.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--medium-gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: var(--shadow);
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.rating i {
    color: var(--light-gold);
    font-size: 0.8rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--medium-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-gold);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--medium-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Video Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
}

/* Responsive Components */
@media (max-width: 768px) {
    .header-actions {
        gap: 15px;
    }
    
    .info-items {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .loading-logo h2 {
        font-size: 1.2rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== SMA ATTRIBUTES PAGE SPECIFIC STYLES ===== */

/* Hero Section - UPDATED FOR MOBILE */
.sma-attributes-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.sma-attributes-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sma-attributes-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite;
}

.sma-attributes-hero .bg-overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.sma-attributes-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* RESPONSIVE TEXT SIZES */
.sma-attributes-hero .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sma-attributes-hero .title-line {
    display: block;
}

.sma-attributes-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .sma-attributes-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .sma-attributes-hero .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .sma-attributes-hero .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .sma-attributes-hero .hero-badge span {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
}

@media (max-width: 576px) {
    .sma-attributes-hero .hero-title {
        font-size: 1.7rem;
    }
    
    .sma-attributes-hero .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .sma-attributes-hero .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .sma-attributes-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}


/* ===== GOVERNING BODY PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.governing-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.governing-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.governing-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite;
}

.governing-hero .bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.governing-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Introduction Section */
.governance-intro {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.intro-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.08);
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.15);
}

.intro-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.intro-icon i {
    font-size: 36px;
    color: #0d077f;
    position: relative;
    z-index: 2;
    line-height: 80px;
}

.gold-icon-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #FFD700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.intro-card h3 {
    color: #0d077f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.intro-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.governance-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.overview-text h3 {
    color: #0d077f;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.overview-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.gold-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFC400 100%);
    margin: 30px 0;
    border-radius: 2px;
}

.term-info {
    background: rgba(240, 248, 255, 0.8);
    border-left: 4px solid #0d077f;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.term-info h4 {
    color: #0d077f;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-info h4 i {
    color: #FFD700;
}

.term-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.overview-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gold-image-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
}

.blue-corner-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
}

/* Governance Structure */
.governance-structure {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    padding: 80px 0;
}

.structure-diagram {
    max-width: 900px;
    margin: 50px auto 0;
}

.structure-level {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.1);
    border: 2px solid #e0e7ff;
    position: relative;
}

.structure-level .level-title {
    color: #0d077f;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.structure-level .level-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.level-arrow {
    margin-top: 20px;
    color: #FFD700;
    font-size: 24px;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.committee-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 7, 127, 0.05);
}

.committee-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 7, 127, 0.1);
}

.committee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 7, 127, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0d077f;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.committee-card h4 {
    color: #0d077f;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.committee-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.final-level {
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    color: white;
    border: none;
}

.final-level .level-title {
    color: white;
}

.final-level .level-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Board Members */
.board-members {
    padding: 80px 0;
    background: white;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.08);
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
    position: relative;
}

.member-card.featured {
    border: 2px solid #FFD700;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.member-card:hover {
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.15);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-card:not(.featured) .member-image {
    height: 250px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0d077f;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    transition: all 0.3s ease;
}

.member-card.featured .member-badge {
    background: #FFD700;
    color: #0d077f;
}

.blue-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 7, 127, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 2;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: #0d077f;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-title {
    color: #0096ff;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.member-credentials {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.member-expertise span {
    background: rgba(13, 7, 127, 0.1);
    color: #0d077f;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(13, 7, 127, 0.2);
}

.member-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Terms of Reference */
.terms-reference {
    padding: 80px 0;
    background: white;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.term-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eef2ff;
    box-shadow: 0 10px 30px rgba(13, 7, 127, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 7, 127, 0.1);
}

.term-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(13, 7, 127, 0.1);
    line-height: 1;
}

.term-card h3 {
    color: #0d077f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.term-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Meetings & Reports */
.meetings-reports {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    padding: 80px 0;
}

.meetings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.meetings-info h3, .reports-info h3 {
    color: #0d077f;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meetings-info h3 i, .reports-info h3 i {
    color: #FFD700;
}

.meetings-list {
    list-style: none;
    padding: 0;
}

.meetings-list li {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #0d077f;
    box-shadow: 0 5px 15px rgba(13, 7, 127, 0.05);
}

.meetings-list li strong {
    color: #0d077f;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.meetings-list li span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reports-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.report-link {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 7, 127, 0.05);
}

.report-link:hover {
    border-color: #FFD700;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(13, 7, 127, 0.1);
}

.report-link i {
    color: #0d077f;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.report-link:hover i {
    transform: scale(1.2);
}

.report-link span {
    flex: 1;
    color: #0d077f;
    font-weight: 500;
}

.report-link small {
    color: #888;
    font-size: 0.85rem;
}

/* CTA Section */
.governance-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d077f 0%, #0096ff 100%);
    position: relative;
    overflow: hidden;
}

.governance-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

.cta-buttons .btn-primary {
    background: #FFD700;
    color: #0d077f;
    border: 2px solid #FFD700;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0d077f;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.gold-cta-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .governance-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .meetings-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .member-card.featured {
        grid-template-columns: 1fr;
    }
    
    .member-card.featured .member-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .governing-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .governing-hero .hero-title {
        font-size: 2rem;
    }
    
    .governing-hero .hero-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .governing-hero .hero-title {
        font-size: 1.7rem;
    }
    
    .governing-hero .hero-description {
        font-size: 0.95rem;
    }
    
    .governing-hero .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .member-card.featured .member-image {
        height: 250px;
    }
}

/* Mobile text adjustments */
@media (max-width: 768px) {
    .governing-hero .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .governing-hero .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .governing-hero .hero-title {
        font-size: 1.7rem;
    }
    
    .governing-hero .hero-description {
        font-size: 0.95rem;
    }
}

