:root {
    --primary: #DD2B1B;
    --dark: #141515;
    --light: #ffffff;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* HEADER UPGRADE */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
}

.logo img {
    height: 42px;
}

/* NAV */
nav a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

/* subtle underline animation */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    padding: 80px 8%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    color: var(--gray);
    margin-bottom: 25px;
}

.btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
}

.btn:hover {
    opacity: 0.9;
}



/* HERO UPGRADE */
.hero {
    padding: 50px 8%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: var(--primary);
}

.hero-left p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn.primary {
    background: var(--primary);
    color: #fff;
}

.btn.secondary {
    border: 1px solid var(--dark);
    color: var(--dark);
    background: transparent;
}

.btn.secondary:hover {
    background: var(--dark);
    color: #fff;
}

.hero-right img {
    filter: brightness(0.95) contrast(1.05);
}

/* TRUST */
.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray);
}

/* RIGHT */
.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-section {
    padding: 80px 8%;
    background: #fff;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-left p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-left ul {
    margin: 15px 0;
    padding-left: 20px;
}

.about-left li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-container {
        flex-direction: column;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-left h1 {
        font-size: 34px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-right {
        order: -1;
    }
}

/* ATTENTION STRIP */
.attention {
    background: #fff4f3;
    padding: 15px 8%;
    font-size: 14px;
    border-top: 1px solid #ffd2cd;
    border-bottom: 1px solid #ffd2cd;
}

/* GRIEVANCE SECTION */
.grievance {
    background: #f9fafb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.grievance-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT */
.grievance-left {
    font-size: 14px;
    color: var(--dark);
}

/* RIGHT */
.grievance-right {
    font-size: 14px;
}

.grievance-right a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.grievance-right a:hover {
    text-decoration: underline;
}

.divider {
    margin: 0 10px;
    color: #999;
}

.services-section {
    padding: 80px 8%;
    background: #fff;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

.services-subtitle {
    color: var(--gray);
    margin-bottom: 45px;
    text-align: center;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* LIST STYLE */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ITEM */
.service-item {
    border-left: 4px solid var(--primary);
    padding: 25px;
    padding-left: 20px;
    transition: all 0.3s ease;
    background: #f9fafb;
    border-radius: 0 12px 12px 0;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(221, 43, 27, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left-color: var(--primary);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.service-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
    .services-section {
        padding: 60px 6%;
    }
}

/* MOBILE */
@media(max-width:768px){
    .grievance-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* SECTION */
.section {
    padding: 70px 8%;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* SERVICES */
.services div {
    padding: 15px 0;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 10px;
}

/* DOWNLOADS */
.downloads a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--dark);
}

.downloads a:hover {
    color: var(--primary);
}

/* CONTACT */
.contact p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #fff;
    padding: 40px 8%;
}

footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero {
        flex-direction: column;
    }

    nav {
        display: none;
    }
}

/* ACCESSIBILITY */
a:focus, button:focus {
    outline: 2px dashed var(--primary);
    outline-offset: 3px;
}

.footer {
    background: #141515;
    color: #fff;
    font-size: 14px;
}

/* TOP */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 8%;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #fff;
}

/* GRIEVANCE */
.grievance a {
    color: #DD2B1B;
}

/* COMPLIANCE */
.footer-compliance {
    border-top: 1px solid #333;
    padding: 20px 8%;
    color: #aaa;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* DISCLAIMER */
.footer-disclaimer {
    border-top: 1px solid #333;
    padding: 20px 8%;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #aaa;
}

.footer-bottom .attention {
    max-width: 500px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 8%;
    background: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, var(--primary), #ff6b5b); */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-address {
    margin-bottom: 15px !important;
}

/* ESCALATION */
.escalation-section {
    /* background: #fff; */
    /* padding: 40px; */
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.06); */
    margin-top: 20px;
}

.escalation-section h3 {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

.escalation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.escalation-card {
    text-align: center;
    padding: 30px 25px;
    background: linear-gradient(135deg, #fefefe, #f8f9fa);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.escalation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.escalation-name {
    font-weight: 600;
    color: var(--dark) !important;
    margin-bottom: 8px !important;
    font-size: 17px;
}

.escalation-role {
    color: var(--primary) !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.escalation-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.escalation-card a {
    color: var(--primary);
    text-decoration: none;
}

.escalation-card a:hover {
    text-decoration: underline;
}

.escalation-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff9f9, #fefefe);
    border-radius: 12px;
    border: 1px dashed #e0e0e0;
    margin-top: 25px;
    line-height: 1.9;
}

.escalation-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.escalation-note a:hover {
    text-decoration: underline;
}

@media(max-width:768px){
    .contact-section {
        padding: 60px 6%;
    }
}

/* CARD ICONS */
.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #e83e3e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(221, 43, 27, 0.25);
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(221, 43, 27, 0.35);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 600;
}

.contact-card strong {
    color: var(--dark);
}

/* COMPLIANCE CARD */
.contact-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.contact-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
}

.contact-card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* ESCALATION ICON */
.escalation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #e83e3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 6px 20px rgba(221, 43, 27, 0.3);
    transition: all 0.3s ease;
}

.escalation-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.escalation-card:hover .escalation-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(221, 43, 27, 0.4);
}

.escalation-card {
    text-align: center;
    padding: 25px 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.escalation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.escalation-name {
    font-weight: 600;
    color: var(--dark) !important;
    margin-bottom: 5px !important;
    font-size: 16px;
}

.escalation-role {
    color: var(--primary) !important;
    font-size: 14px !important;
    margin-bottom: 15px !important;
    font-weight: 500;
}

.escalation-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.escalation-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.escalation-card a:hover {
    text-decoration: underline;
}

.escalation-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 20px;
    line-height: 1.8;
}

.escalation-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.escalation-note a:hover {
    text-decoration: underline;
}

/* KMP TABLE */
.kmp-section {
    margin-top: 40px;
    /* background: #fff; */
    /* padding: 40px; */
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.06); */
}

.kmp-section h3 {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

.kmp-table-wrapper {
    overflow-x: auto;
}

.kmp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.kmp-table th {
    background: linear-gradient(135deg, var(--primary), #e83e3e);
    color: #fff;
    padding: 16px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kmp-table th:first-child {
    border-radius: 10px 0 0 0;
}

.kmp-table th:last-child {
    border-radius: 0 10px 0 0;
}

.kmp-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    color: var(--gray);
    font-size: 14px;
}

.kmp-table tbody tr {
    transition: all 0.2s ease;
}

.kmp-table tbody tr:hover {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    transform: scale(1.01);
}

.kmp-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.kmp-table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.kmp-table td:last-child a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.kmp-table td:last-child a:hover {
    text-decoration: underline;
}

/* HOVER EFFECTS FOR CARDS */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-card:hover .card-icon {
    transform: scale(1.1);
}

/* SCORE SECTION */
.score-section {
    padding: 80px 8%;
    background: #fff;
}

.score-container {
    max-width: 1100px;
    margin: 0 auto;
}

.score-header {
    text-align: center;
    margin-bottom: 40px;
}

.score-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.score-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.score-header h2 {
    font-size: 28px;
    color: var(--dark);
    font-weight: 600;
}

.score-content {
    text-align: center;
}

.score-intro {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    font-weight: 500;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.score-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.3s ease;
}

.score-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.score-card h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.score-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.score-card ul {
    list-style: none;
    padding: 0;
}

.score-card ul li {
    color: var(--gray);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.score-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.score-link-box {
    background: linear-gradient(135deg, #e8f4fc, #f0f9ff);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px dashed #3498db;
}

.score-link-box p {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 20px;
}

.score-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.score-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.score-button svg {
    fill: #fff;
}

.score-process {
    text-align: left;
}

.score-process h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.step-number {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, var(--primary), #e83e3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

@media(max-width:768px){
    .score-section {
        padding: 60px 6%;
    }
    
    .score-container {
        padding: 25px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 10px;
    }
}

/* DOWNLOADS SECTION */
.downloads-section {
    padding: 80px 8%;
    background: #f9fafb;
}

.downloads-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
}

.downloads-container h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #e83e3e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}

.download-info {
    flex: 1;
}

.download-info h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.download-info p {
    font-size: 14px;
    color: var(--gray);
}

.download-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.download-btn:hover {
    background: #c42515;
    transform: translateY(-2px);
}

@media(max-width:768px){
    .downloads-section {
        padding: 60px 6%;
    }
    
    .downloads-container {
        padding: 25px;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
    }
    
    .download-btn {
        width: 100%;
        text-align: center;
    }
}

/* DOCS SECTION WITH TABS */
.docs-section {
    padding: 80px 8%;
    background: #fff;
    min-height: 60vh;
}

.docs-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}
     

/* TABS */
.docs-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    padding: 12px 20px;
    border: none;
    background: #f0f0f0;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e0e0e0;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* DOC LIST */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.doc-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #e83e3e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
}

.doc-info {
    flex: 1;
}

.doc-info h3 {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.doc-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.doc-btn:hover {
    background: #c42515;
    transform: translateY(-2px);
}

/* VERNACULAR SECTION */
.vernacular-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.vernacular-section h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.vernacular-note {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.vernacular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
    background: #fff;
}

.lang-icon {
    font-size: 20px;
}

.bse-notice {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media(max-width:768px){
    .docs-section {
        padding: 60px 6%;
    }
    
    .docs-container {
        padding: 25px;
    }
    
    .docs-tabs {
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .doc-item {
        flex-direction: column;
        text-align: center;
    }
    
    .doc-btn {
        width: 100%;
        text-align: center;
    }
}

