/* ========================================
   PPID Specific Styles
   ======================================== */

/* PPID Hero */
.ppid-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.owl-slide {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 108, 56, 0.4) 0%, rgba(40, 54, 24, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-content>* {
    opacity: 0;
    /* Initially hidden */
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .breadcrumb {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.4s;
}

.hero-content h2 {
    animation-delay: 0.6s;
}

.hero-content p {
    animation-delay: 0.8s;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom for effect */
    transition: opacity 1.5s ease-in-out, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.ppid-hero-overlay {
    z-index: 1;
    /* Ensure overlay sits on top of slides */
}

.ppid-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.ppid-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(96, 108, 56, 0.1) 0%, transparent 100%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.ppid-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    color: var(--neutral-100);
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: var(--spacing-md);
}

.breadcrumb a {
    color: var(--neutral-100);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.6;
}

.ppid-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.ppid-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.ppid-hero-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Quick Stats */
.ppid-quick-stats {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.quick-stat-card {
    background: var(--neutral-100);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    border-left: 4px solid #bc6c25;
}

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

.quick-stat-icon {
    width: 60px;
    height: 60px;
    background: #f5f7ed;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-stat-icon svg {
    color: #283618;
}

.quick-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
    margin-bottom: 4px;
}

.quick-stat-label {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.4;
}

/* PPID Profile Section */
.ppid-profile-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--neutral-100);
}

.ppid-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.ppid-profile-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.ppid-about-card,
.ppid-tasks-card {
    background: var(--neutral-50);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.ppid-about-card h3,
.ppid-tasks-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-md);
}

.ppid-about-card p {
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.ppid-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--neutral-100);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--neutral-700);
    font-weight: 500;
}

.highlight-item svg {
    color: #bc6c25;
    flex-shrink: 0;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.task-item {
    padding: var(--spacing-lg);
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    border-left: 4px solid #606c38;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.task-number {
    font-size: 32px;
    font-weight: 700;
    color: #606c38;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.task-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-xs);
}

.task-item p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* PPID Sidebar */
.ppid-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.ppid-contact-card,
.ppid-structure-card {
    background: var(--neutral-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.ppid-contact-card h3,
.ppid-structure-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-md);
}

.ppid-contact-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
}

.ppid-contact-item:last-child {
    border-bottom: none;
}

.ppid-contact-item svg {
    color: #606c38;
    flex-shrink: 0;
    margin-top: 2px;
}

.ppid-contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.ppid-contact-item p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.5;
}

.structure-item {
    padding: var(--spacing-md);
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.structure-item:last-child {
    margin-bottom: 0;
}

.structure-title {
    font-size: 13px;
    font-weight: 600;
    color: #606c38;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.structure-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral-900);
}

/* Info Public Section */
.info-public-section {
    padding: var(--spacing-xxxl) 0;
    background: #ffffff;
}

.info-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.info-type-card {
    background: var(--neutral-100);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-type-icon {
    width: 80px;
    height: 80px;
    background: #f5f7ed;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.info-type-icon svg {
    color: #283618;
}

.info-type-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.info-type-card>p {
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.info-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.info-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 24px;
    position: relative;
    color: var(--neutral-700);
    font-size: 15px;
    line-height: 1.6;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #bc6c25;
    font-weight: 700;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bc6c25;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.info-link:hover {
    gap: 12px;
}

.info-link svg {
    width: 16px;
    height: 16px;
}

/* DIP Section */
.dip-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--neutral-100);
}

.dip-filter-bar {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.dip-filter-btn {
    padding: 12px 24px;
    background: var(--neutral-50);
    border: 2px solid var(--neutral-50);
    border-radius: 50px;
    color: var(--neutral-700);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.dip-filter-btn:hover {
    background: #f1f3ea;
    border-color: #606c38;
    color: #606c38;
}

.dip-filter-btn.active {
    background: #283618;
    border-color: #283618;
    color: var(--neutral-100);
}

.dip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.dip-card {
    display: flex;
    gap: var(--spacing-md);
    background: var(--neutral-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.dip-card.hidden {
    display: none;
}

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

.dip-icon {
    width: 60px;
    height: 60px;
    background: #f5f7ed;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dip-icon svg {
    color: #283618;
}

.dip-content {
    flex-grow: 1;
}

.dip-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f3ea;
    color: #606c38;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.dip-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.dip-content p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.dip-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.dip-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--neutral-500);
}

.dip-date svg {
    width: 14px;
    height: 14px;
}

.dip-format {
    font-size: 13px;
    color: var(--neutral-500);
    font-weight: 500;
}

.dip-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #606c38;
    color: var(--neutral-100);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-sm);
    font-family: var(--font-family);
}

.dip-download-btn:hover {
    background: #bc6c25;
    transform: scale(1.05);
}

/* Request Section */
.request-section {
    padding: var(--spacing-xxxl) 0;
    background: #f8f9fa;
}

.request-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--spacing-xxl);
}

.request-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-lg);
}

.request-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.step-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #283618;
    color: var(--neutral-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.request-requirements,
.request-alternative {
    padding: var(--spacing-lg);
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.request-requirements h4,
.request-alternative h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.request-requirements ul {
    list-style: none;
    padding-left: 0;
}

.request-requirements li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--neutral-700);
    line-height: 1.6;
}

.request-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.alternative-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    color: var(--neutral-700);
}

.option-item svg {
    color: #606c38;
    flex-shrink: 0;
}

.option-item .info-link {
    color: #bc6c25;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.option-item .info-link:hover {
    color: #606c38;
    text-decoration: underline;
}

.request-form-card {
    background: var(--neutral-100);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.request-form-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-lg);
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-section {
    padding: var(--spacing-lg);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.form-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--neutral-100);
}

.checkbox-label {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

.btn-submit-request {
    background: #606c38;
    color: var(--neutral-100);
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    transition: all 0.25s ease;
    margin-top: var(--spacing-md);
    font-family: var(--font-family);
}

.btn-submit-request:hover {
    background: #bc6c25;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(188, 108, 37, 0.3);
}

/* Regulation Section */
.regulation-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--neutral-100);
}

.regulation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.regulation-card {
    padding: var(--spacing-lg);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

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

.regulation-icon {
    width: 70px;
    height: 70px;
    background: #f5f7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.regulation-icon svg {
    color: #606c38;
}

.regulation-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-xs);
}

.regulation-card p {
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Report Section */
.report-section {
    padding: var(--spacing-xxxl) 0;
    background: #f8f9fa;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.report-card {
    background: var(--neutral-100);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--neutral-50);
}

.report-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
}

.report-year {
    padding: 6px 16px;
    background: #f1f3ea;
    color: #606c38;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.report-stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
}

.report-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #606c38;
    line-height: 1;
    margin-bottom: 8px;
}

.report-stat-label {
    font-size: 13px;
    color: var(--neutral-700);
    font-weight: 500;
}

.report-time-stats {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.time-stat-large {
    text-align: center;
    padding: var(--spacing-lg);
    background: #f1f3ea;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.time-number {
    font-size: 56px;
    font-weight: 700;
    color: #606c38;
    line-height: 1;
    margin-bottom: 8px;
}

.time-label {
    font-size: 14px;
    color: var(--neutral-700);
    font-weight: 600;
}

.time-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex-grow: 1;
}

.time-detail-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
}

.time-detail-item span {
    color: var(--neutral-700);
}

.time-detail-item strong {
    color: var(--neutral-900);
}

.report-download {
    width: 100%;
    padding: 14px 24px;
    background: #606c38;
    color: var(--neutral-100);
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-family: var(--font-family);
}

.report-download:hover {
    background: #bc6c25;
    transform: scale(1.02);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxxl) 0;
    background: var(--neutral-100);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.faq-question:hover {
    color: #606c38;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    color: var(--neutral-700);
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ppid-profile-grid,
    .request-content {
        grid-template-columns: 1fr;
    }

    .info-types-grid {
        grid-template-columns: 1fr;
    }

    .regulation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ppid-hero-title {
        font-size: 36px;
    }

    .ppid-hero-subtitle {
        font-size: 20px;
    }

    .quick-stats-grid {
        grid-template-columns: 1fr;
    }

    .tasks-grid {
        grid-template-columns: 1fr;
    }

    .dip-grid {
        grid-template-columns: 1fr;
    }

    .report-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-time-stats {
        flex-direction: column;
    }

    .regulation-grid {
        grid-template-columns: 1fr;
    }
}