/* RTI Page Styles */
.rti-hero {
    background: linear-gradient(135deg, var(--clr-blue-900) 0%, var(--clr-blue-700) 100%);
    padding: var(--sp-12) 0 var(--sp-10);
    text-align: center;
    color: var(--clr-white);
}

.rti-hero__title {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--sp-4);
}

.rti-hero__desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.rti-card {
    background: var(--clr-white);
    padding: var(--sp-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.rti-card h2 {
    color: var(--clr-blue-900);
    margin-bottom: var(--sp-4);
    font-family: var(--ff-heading);
}

.rti-card p {
    color: var(--clr-gray-700);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
    font-size: 1.05rem;
}

.bg-light {
    background-color: var(--clr-gray-50);
}

.section-title {
    text-align: center;
    color: var(--clr-blue-900);
    font-family: var(--ff-heading);
    font-size: 2rem;
    margin-bottom: var(--sp-10);
}

/* Authorities Grid */
.authorities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-8);
}

.authority-card {
    background: var(--clr-white);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--clr-green-500);
    transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

.authority-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.authority-card__icon {
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--clr-green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
}

.authority-card__icon svg {
    width: 32px;
    height: 32px;
}

.authority-card h3 {
    color: var(--clr-blue-900);
    font-size: 1.25rem;
    margin-bottom: var(--sp-1);
}

.authority-role {
    color: var(--clr-gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--sp-5);
    font-weight: 500;
}

.authority-details p {
    color: var(--clr-gray-700);
    line-height: 1.6;
    margin-bottom: var(--sp-3);
    font-size: 0.95rem;
}

/* Procedure Section */
.procedure-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sp-6);
    margin-bottom: var(--sp-10);
}

.step-card {
    background: var(--clr-white);
    padding: var(--sp-6);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-gray-200);
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 800;
    color: var(--clr-gray-100);
    line-height: 1;
    z-index: 0;
}

.step-card h4 {
    color: var(--clr-blue-800);
    font-size: 1.1rem;
    margin-bottom: var(--sp-3);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--clr-gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Exemption Box */
.exemption-box {
    background: #fff1f2;
    border-left: 4px solid #f43f5e;
    padding: var(--sp-6);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.exemption-box h3 {
    color: #9f1239;
    margin-bottom: var(--sp-3);
    font-size: 1.2rem;
}

.exemption-box p {
    color: #be123c;
    margin-bottom: var(--sp-4);
}

.exemption-box ul {
    list-style-type: disc;
    padding-left: var(--sp-6);
    color: #be123c;
}

.exemption-box li {
    margin-bottom: var(--sp-2);
    line-height: 1.5;
}

/* Suo Moto Table */
.suo-moto-section {
    margin-top: var(--sp-8);
}

.table-responsive {
    overflow-x: auto;
}

.suo-moto-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-gray-200);
}

.suo-moto-table th, 
.suo-moto-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--clr-gray-200);
}

.suo-moto-table th {
    background-color: #211551; /* Dark blue/purple matching screenshot */
    color: var(--clr-white);
    font-weight: 600;
    font-family: var(--ff-heading);
    letter-spacing: 0.5px;
}

.suo-moto-table td {
    color: var(--clr-gray-700);
    line-height: 1.5;
}

.suo-moto-table tr:last-child td {
    border-bottom: none;
}

.suo-moto-table tbody tr:hover {
    background-color: var(--clr-gray-50);
}

.suo-moto-table a {
    color: var(--clr-blue-600);
    text-decoration: underline;
    font-weight: 500;
}

.suo-moto-table a:hover {
    color: var(--clr-blue-800);
}
