/* Charter Page Styles */

.charter-main {
    min-height: 100vh;
}

/* Hero Section */
.charter-hero {
    background: linear-gradient(135deg, #1d2b64 0%, #3a37f8 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.charter-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Noto Serif', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.4rem;
    opacity: 0.8;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

/* Section Styles */
.charter-section {
    padding: 8rem 2rem;
}

.charter-section.bg-light {
    background-color: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif', serif;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--light-color);
}

/* Brand Identity */
.brand-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-header h2 {
    font-size: 2.8rem;
    color: var(--black);
    font-family: 'Noto Serif', serif;
    margin-bottom: 1rem;
}

.brand-line {
    width: 80px;
    height: 4px;
    background: var(--main-color);
    margin: 0 auto;
    border-radius: 2px;
}

.brand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.brand-definition, .brand-statement, .taglines {
    margin-bottom: 2rem;
}

.brand-definition h3, .brand-statement h3, .taglines h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.definition-text {
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    color: var(--primaryColor);
    line-height: 1.6;
}

.brand-statement p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--black);
}

.tagline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tagline-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.tagline-list li:hover {
    background: #e9ecef;
}

.tagline-list i {
    color: var(--main-color);
    opacity: 0.6;
}

/* Framework Grid */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.framework-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.framework-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--main-color), var(--primaryColor));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-icon i {
    font-size: 2.5rem;
    color: white;
}

.framework-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.framework-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--light-color);
}

/* Regulatory Code */
.regulation-category {
    margin-bottom: 5rem;
}

.regulation-category:last-child {
    margin-bottom: 0;
}

.regulation-category h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--main-color);
    display: inline-block;
}

.regulation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.regulation-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primaryColor);
}

.regulation-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.regulation-item p {
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 1.6;
}

.conduct-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.conduct-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.conduct-item i {
    font-size: 2.4rem;
    color: var(--red);
    margin-top: 0.5rem;
}

.conduct-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.conduct-item p {
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 1.6;
}

/* Roles Tabs */
.roles-tabs .tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-color);
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.role-card {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.role-card h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 3rem;
    text-align: center;
}

.rights-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.6;
}

.right-item i {
    font-size: 2rem;
    color: var(--green);
    margin-top: 0.3rem;
}

.right-item i.fa-ban, .right-item i.fa-exclamation-circle {
    color: var(--red);
}

.staff-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.staff-role h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.staff-role i {
    color: var(--primaryColor);
    margin-right: 0.5rem;
}

.staff-role p {
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 1.6;
}

/* Financial Policy */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.fee-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fee-icon {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.fee-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.fee-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primaryColor);
    margin-bottom: 1.5rem;
}

.fee-description {
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.fee-note {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--light-color);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.fee-card.tenant-protection .fee-amount {
    color: var(--green);
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.principle-card {
    background: white;
    padding: 3rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.principle-icon {
    font-size: 3rem;
    color: var(--primaryColor);
    margin-bottom: 2rem;
}

.principle-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.principle-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--light-color);
}

/* Charter CTA */
.charter-cta {
    background: var(--main-color);
    padding: 6rem 2rem;
    color: white;
}

.charter-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.charter-cta .cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
}

.charter-cta .cta-content p {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.charter-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.charter-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.charter-cta .btn-primary {
    background: rgba(255,255,255,0.9);
    color: var(--main-color);
    border: 2px solid rgba(255,255,255,0.9);
}

.charter-cta .btn-primary:hover {
    background: white;
    color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.charter-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}

.charter-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.charter-cta .btn i {
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-content {
        grid-template-columns: 1fr;
    }

    .roles-tabs .tab-nav {
        flex-wrap: wrap;
    }
}

