/* PPID Portal - Custom Styles with Bootstrap Integration */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Terracotta Color Scheme */
:root {
    --primary-terracotta: #CD853F;
    --secondary-terracotta: #D2691E;
    --dark-terracotta: #A0522D;
    --light-terracotta: #F4A460;
    --accent-terracotta: #DEB887;
    --terracotta-gradient: linear-gradient(135deg, #CD853F, #D2691E, #F4A460);
    --terracotta-shadow: rgba(205, 133, 63, 0.3);
    --text-light: #FFFFFF;
    --text-dark: #2C2C2C;
    --background-light: #FFF8F0;
    --background-card: #FFFFFF;
    
    /* Keep maroon for other sections */
    --primary-maroon: #8B0000;
    --secondary-maroon: #A52A2A;
    --dark-maroon: #5D0000;
    --light-maroon: #CD5C5C;
    --accent-maroon: #B22222;
    --maroon-gradient: linear-gradient(135deg, #8B0000, #A52A2A, #B22222);
    --maroon-shadow: rgba(139, 0, 0, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(to bottom, var(--background-light), #FFFFFF);
}

/* Bootstrap Override - Container */
.container {
    max-width: 1200px;
}

/* Header Section - Updated to Terracotta */
.header-section {
    background: var(--terracotta-gradient);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 4px 20px var(--terracotta-shadow);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Fix spacing between logo and text columns */
.header-section .row {
    align-items: center;
}

.header-section .col-md-2 {
    padding-right: 0.5rem;
}

.header-section .col-md-10 {
    padding-left: 0.5rem;
}

.logo {
    width: 80px;
    height: 80px;
}

.header-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.header-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 0;
}

/* Navigation Section - Bootstrap Override */
.nav-section {
    background: var(--dark-maroon) !important;
    padding: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    padding: 1rem 1.5rem !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--secondary-maroon) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    background: var(--background-card);
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 220px;
}

.navbar-nav .dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: linear-gradient(135deg, var(--primary-terracotta), var(--secondary-terracotta));
    color: var(--text-light);
    border-left-color: var(--dark-terracotta);
    transform: translateX(5px);
}

.navbar-nav .dropdown-item:active {
    background: var(--dark-terracotta);
    color: var(--text-light);
}

/* Dropdown Submenu Styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle::after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    margin-left: auto;
}

.dropdown-submenu .dropdown-submenu-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: -1px;
    border-radius: 0 8px 8px 8px;
    display: none;
    min-width: 200px;
}

.dropdown-submenu:hover .dropdown-submenu-menu {
    display: block;
}

.dropdown-submenu .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-submenu .dropdown-submenu-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.dropdown-submenu .dropdown-submenu-menu .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-terracotta), var(--secondary-terracotta));
    color: var(--text-light);
    border-left-color: transparent;
    transform: translateX(3px);
}

/* Dropdown Toggle Arrow Styling */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Profile Page Styles */
.content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.profile-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.page-header {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.page-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

.profile-section {
    padding-left: 1.5rem;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-content {
    color: #495057;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.highlight-box h5 {
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.custom-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.org-chart {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.org-box {
    background: white;
    border: 2px solid #007bff;
    border-radius: 10px;
    padding: 1rem;
    margin: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.org-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.org-box h5, .org-box h6 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.org-box p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* PPID Structure Layout Styles */
.ppid-structure-layout {
    margin: 2rem 0;
}

.structure-row {
    margin-bottom: 1.5rem;
}

.structure-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.structure-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-terracotta);
}

.structure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--terracotta-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.structure-card:hover::before {
    opacity: 1;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.structure-card:hover .photo-placeholder {
    background: transparent;
    color: var(--primary-terracotta);
}

.position-info {
    padding-left: 1rem;
}

.position-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.position-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for structure layout */
@media (max-width: 768px) {
    .structure-card {
        padding: 1rem;
    }
    
    .position-info {
        padding-left: 0;
        margin-top: 1rem;
        text-align: center;
    }
    
    .photo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
    
    .position-title {
        font-size: 1.1rem;
    }
    
    .position-description {
        font-size: 0.9rem;
    }
}

.vision-box, .mission-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1px solid #ffb74d;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
}

.vision-box h5, .mission-box h5 {
    color: #f57c00;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Information Table Styles */
.information-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.information-table thead {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-bottom: 2px solid #333333;
}

.information-table thead th {
    color: #000000 !important;
    font-weight: 600;
    padding: 1rem 0.75rem;
    border: none;
    font-size: 0.9rem;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.information-table thead th:last-child {
    border-right: none;
}

.information-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.information-table tbody tr:hover {
    background-color: #fff8f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.information-table tbody tr:last-child {
    border-bottom: none;
}

.information-table tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #495057;
    border-right: 1px solid #e9ecef;
}

.information-table tbody td:last-child {
    border-right: none;
}

.information-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-terracotta);
    text-align: center;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Information Content Styles */
.information-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.information-section {
    margin-top: 2rem;
}

/* Responsive adjustments for information table */
@media (max-width: 768px) {
    .information-table {
        font-size: 0.8rem;
    }
    
    .information-table thead th,
    .information-table tbody td {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .information-content {
        padding: 1rem;
    }
    
    .table-responsive {
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .information-table thead th,
    .information-table tbody td {
        padding: 0.4rem 0.2rem;
        font-size: 0.7rem;
    }
}

/* Sidebar Styles */
.sidebar-content {
    padding-left: 1rem;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.widget-header {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--secondary-maroon) 100%);
    color: white;
    padding: 1rem;
    font-weight: 600;
}

.widget-header h5 {
    margin: 0;
    font-size: 1rem;
}

.widget-content {
    padding: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 0;
}

.stat-item:last-child {
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-maroon);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
}

.quick-links li:last-child {
}

.quick-links a {
    display: block;
    padding: 0.75rem 0;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: #007bff;
    padding-left: 0.5rem;
}

.update-item {
    padding: 0.75rem 0;
}

.update-item:last-child {
}

.update-date {
    font-size: 0.8rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.update-text {
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.4;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #495057;
}

.contact-item i {
    color: #007bff;
    width: 20px;
}

.contact-item small {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .profile-content {
        padding: 1rem;
    }
    
    .sidebar-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .org-chart {
        padding: 1rem;
    }
    
    .org-box {
        margin: 0.25rem;
        padding: 0.75rem;
    }
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./rektorat1.png') center/cover no-repeat;
    filter: blur(2px) opacity(0.7);
    animation: heroMove 8s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

@keyframes heroMove {
    0%, 100% { 
        transform: scale(1) translateX(0px);
        background-position: center center;
    }
    25% { 
        transform: scale(1.05) translateX(-10px);
        background-position: left center;
    }
    50% { 
        transform: scale(1.1) translateX(0px);
        background-position: center center;
    }
    75% { 
        transform: scale(1.05) translateX(10px);
        background-position: right center;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-weight: 800;
    background: linear-gradient(45deg, #FFFFFF, #F0F0F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

/* Bootstrap Button Override */
.btn-primary.cta-button {
    background: var(--maroon-gradient);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--maroon-shadow);
    transition: all 0.3s ease;
}

.btn-primary.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--maroon-shadow);
    background: linear-gradient(135deg, #A52A2A, #B22222, #CD5C5C);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.section-title {
    color: var(--primary-maroon);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, #FFFFFF, var(--background-light));
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--maroon-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    text-align: center;
}

.info-card h3,
.info-card h4 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card h3 {
    font-size: 1.5rem;
}

.info-card h4 {
    font-size: 1.3rem;
}

.info-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Bootstrap List Group Override */
.list-group-numbered .list-group-item {
    border-color: rgba(139, 0, 0, 0.1);
    padding: 1rem 1.25rem;
}

.list-group-numbered .list-group-item::before {
    background-color: var(--primary-maroon);
    color: white;
    font-weight: 600;
}

/* Unit Cards */
.unit-card {
    background: var(--maroon-gradient);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--maroon-shadow);
    height: 100%;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.unit-card:hover::before {
    left: 100%;
}

.unit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
}

.unit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.unit-card p {
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.unit-contact {
    font-size: 0.95rem;
    opacity: 0.9;
}

.unit-contact i {
    margin-right: 0.5rem;
}

/* Footer Section */
.footer-section {
    background: var(--maroon-gradient);
    color: var(--text-light);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.footer-section p {
    margin-bottom: 0;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 1.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-card,
    .unit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
}

/* Maklumat PPID Styles */
.maklumat-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.maklumat-declaration {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--primary-terracotta);
}

.declaration-header {
    border-bottom: 3px solid var(--primary-terracotta);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.declaration-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.institution-name {
    color: #333333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.opening-statement {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.commitment-list {
    margin-bottom: 2rem;
}

.commitment-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-terracotta);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.commitment-item h5 {
    color: var(--primary-terracotta);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.commitment-item p {
    color: #555555;
    margin-bottom: 0;
    line-height: 1.6;
}

.principles-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.principles-title {
    color: var(--primary-terracotta);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.principle-card {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #ffe0d6;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-terracotta);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.principle-card h6 {
    color: var(--primary-terracotta);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.principle-card p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.closing-statement {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-terracotta);
}

.closing-statement p {
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
}

.signature-text {
    font-style: italic;
    color: #666666;
}

.signature-section {
    border-top: 2px solid #e9ecef;
    padding-top: 2rem;
}

.signature-place {
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
}

.signature-title {
    font-weight: 600;
    color: var(--primary-terracotta);
    margin-bottom: 0.3rem;
}

.signature-space {
    height: 80px;
    border-bottom: 1px solid #333333;
    margin: 0 2rem;
}

.signature-name {
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.3rem;
}

.signature-nip {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive adjustments for maklumat page */
@media (max-width: 768px) {
    .maklumat-content {
        padding: 1rem;
    }
    
    .maklumat-declaration {
        padding: 1.5rem;
    }
    
    .declaration-title {
        font-size: 1.2rem;
    }
    
    .institution-name {
        font-size: 1rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-item {
        padding: 1rem;
    }
    
    .signature-space {
        margin: 0 1rem;
    }
}

/* Tata Cara PPID Styles */
.cara-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-card {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--primary-terracotta);
    text-align: center;
}

.intro-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.intro-text {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Procedure Steps */
.procedure-section {
    margin-bottom: 3rem;
}

.procedure-steps {
    position: relative;
}

.procedure-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-terracotta), #ff9f7a);
    border-radius: 2px;
}

.step-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-terracotta);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-title {
    color: var(--primary-terracotta);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-description {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-terracotta);
}

.step-details strong {
    color: var(--primary-terracotta);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.step-details ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.step-details li {
    color: #555555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Requirements Grid */
.requirements-section {
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-terracotta);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-terracotta), #ff9f7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.requirement-title {
    color: var(--primary-terracotta);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.requirement-desc {
    color: #666666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Cost Table */
.cost-section {
    margin-bottom: 3rem;
}

.cost-table-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.cost-table thead {
    background: linear-gradient(135deg, var(--primary-terracotta), #ff9f7a);
}

.cost-table thead th {
    color: white;
    font-weight: 600;
    padding: 1.5rem;
    text-align: left;
    border: none;
    font-size: 1rem;
}

.cost-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.cost-table tbody tr:hover {
    background-color: #fff8f5;
}

.cost-table tbody tr:last-child {
    border-bottom: none;
}

.cost-table tbody td {
    padding: 1.2rem 1.5rem;
    color: #333333;
    border: none;
    vertical-align: middle;
}

.cost-free {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--primary-terracotta);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-terracotta);
}

.contact-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-terracotta);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--primary-terracotta);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #333333;
    font-weight: 500;
}

/* Responsive adjustments for cara page */
@media (max-width: 768px) {
    .cara-content {
        padding: 1rem;
    }
    
    .intro-card {
        padding: 1.5rem;
    }
    
    .intro-title {
        font-size: 1.2rem;
    }
    
    .procedure-steps::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirement-card {
        padding: 1.5rem;
    }
    
    .requirement-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cost-table thead th,
    .cost-table tbody td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 0.6rem;
    }
    
    .contact-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
}

/* ===== Mekanisme Keberatan PPID Styles ===== */
.berat-content {
    padding: 0;
}

.intro-section .intro-card {
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
    border: 2px solid #e8ddd4;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.intro-section .intro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-terracotta);
}

.intro-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.intro-text {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Legal Basis Section */
.legal-basis-section .legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.legal-card {
    background: #fff;
    border: 2px solid #e8ddd4;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-terracotta);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-terracotta), #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.legal-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-desc {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Reasons Section */
.reasons-section .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reason-card {
    background: #fff;
    border: 2px solid #e8ddd4;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reason-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-terracotta);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.reason-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-terracotta), #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reason-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-desc {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Procedure Section */
.procedure-section .procedure-steps {
    position: relative;
}

.procedure-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-terracotta), #d4a574);
    border-radius: 2px;
}

.step-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-terracotta), #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    background: #fff;
    border: 2px solid #e8ddd4;
    border-radius: 12px;
    padding: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-content:hover {
    transform: translateY(-3px);
    border-color: var(--primary-terracotta);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-details {
    background: #f8f4f0;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.step-details strong {
    color: var(--primary-terracotta);
    display: block;
    margin-bottom: 0.5rem;
}

.step-details ul {
    margin: 0;
    padding-left: 1.2rem;
}

.step-details li {
    color: #666;
    margin-bottom: 0.3rem;
}

/* Requirements Section */
.requirements-section .requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.requirement-item {
    background: #fff;
    border: 2px solid #e8ddd4;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.requirement-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-terracotta);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-terracotta), #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.requirement-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.requirement-desc {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Template Section */
.template-section .template-card {
    background: #fff;
    border: 2px solid #e8ddd4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-terracotta);
}

.template-header {
    background: linear-gradient(135deg, var(--primary-terracotta), #d4a574);
    color: white;
    padding: 1.5rem;
}

.template-title {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.2rem;
}

.template-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.template-content {
    padding: 2rem;
}

.template-text {
    color: #555;
    line-height: 1.7;
}

.template-text p {
    margin-bottom: 1rem;
}

.template-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.template-text li {
    margin-bottom: 0.5rem;
}

.template-text strong {
    color: var(--primary-terracotta);
}

/* Contact Section */
.contact-section .contact-info {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
    border: 2px solid #e8ddd4;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-terracotta);
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-title {
    color: var(--primary-terracotta);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
    font-size: 1rem;
}

.contact-item i {
    color: var(--primary-terracotta);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design for Berat Page */
@media (max-width: 768px) {
    .berat-content {
        padding: 0 0.5rem;
    }
    
    .intro-section .intro-card,
    .template-content,
    .contact-card {
        padding: 1.5rem;
    }
    
    .legal-cards,
    .reasons-grid,
    .requirements-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .legal-card,
    .reason-card,
    .requirement-item {
        padding: 1rem;
    }
    
    .legal-icon,
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reason-number,
    .requirement-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .procedure-steps::before {
        left: 25px;
    }
    
    .step-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-details {
        padding: 0.8rem;
    }
    
    .template-header {
        padding: 1rem;
    }
    
    .template-title {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
}

/* FAQ Page Styles */
.faq-section {
    background: var(--background-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-terracotta);
}

.faq-title {
    color: var(--primary-terracotta);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.faq-title i {
    margin-right: 1rem;
    color: var(--secondary-terracotta);
}

.faq-subtitle {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
}

.faq-container {
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--background-card);
    border: 2px solid var(--accent-terracotta);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.2);
    border-color: var(--primary-terracotta);
}

.faq-question {
    background: linear-gradient(135deg, var(--primary-terracotta), var(--secondary-terracotta));
    color: var(--text-light);
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--secondary-terracotta), var(--dark-terracotta));
}

.faq-question h5 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.faq-icon {
    margin-right: 1rem;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-icon.rotated {
    transform: rotate(90deg);
}

.faq-answer {
    background: var(--background-light);
    border-top: 1px solid var(--accent-terracotta);
}

.faq-content {
    padding: 2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-content p {
    margin-bottom: 1rem;
}

.faq-content ul, .faq-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.faq-content strong {
    color: var(--primary-terracotta);
    font-weight: 600;
}

.info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-category {
    background: var(--background-card);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-terracotta);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.info-category h6 {
    color: var(--primary-terracotta);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-category h6 i {
    margin-right: 0.5rem;
    color: var(--secondary-terracotta);
}

.info-category p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: var(--background-card);
    border-radius: 8px;
    border-left: 3px solid var(--primary-terracotta);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item i {
    color: var(--primary-terracotta);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: var(--primary-terracotta);
    display: block;
    margin-bottom: 0.3rem;
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary-terracotta), var(--secondary-terracotta));
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: var(--text-light);
    color: var(--primary-terracotta);
    border: 2px solid var(--text-light);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-buttons .btn-outline-primary:hover {
    background: var(--text-light);
    color: var(--primary-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-content {
        padding: 1.5rem;
    }
    
    .info-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h4 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* News Detail Page Styling */
.news-detail-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.news-detail-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-meta .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.news-meta .text-muted {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.news-detail-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.news-detail-summary {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

.news-detail-image {
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-detail-image:hover img {
    transform: scale(1.02);
}

.news-detail-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.news-detail-body h4 {
    color: var(--terracotta);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.news-detail-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.news-detail-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.news-detail-body li {
    margin-bottom: 0.5rem;
    position: relative;
}

.news-detail-body li::marker {
    color: var(--terracotta);
}

.news-share {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--terracotta);
}

.news-share h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-buttons .btn {
    border-radius: 25px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-navigation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.news-navigation .btn {
    border-radius: 25px;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-terracotta {
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.btn-outline-terracotta:hover {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.btn-terracotta {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
    border-radius: 25px;
    padding: 0.7rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-terracotta:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

/* Responsive Design for News Detail */
@media (max-width: 768px) {
    .news-detail-content {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .news-detail-title {
        font-size: 1.8rem;
    }
    
    .news-detail-summary {
        font-size: 1rem;
    }
    
    .news-detail-body {
        font-size: 1rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .news-navigation .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .news-navigation .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .news-detail-title {
        font-size: 1.5rem;
    }
    
    .news-detail-body ul {
        padding-left: 1.5rem;
    }
    
    .share-buttons .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* News Cards Styling */
.news-card {
    background: var(--background-card);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(205, 133, 63, 0.1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(205, 133, 63, 0.2);
    border-color: var(--primary-terracotta);
}

.news-date {
    background: var(--terracotta-gradient);
    color: var(--text-light);
    padding: 1rem;
    text-align: center;
    position: relative;
}

.news-date::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--secondary-terracotta);
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.date-month {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    color: var(--dark-terracotta);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary-terracotta);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-link {
    color: var(--primary-terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    color: var(--dark-terracotta);
    text-decoration: none;
    transform: translateX(5px);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* News Section Styling */
#berita {
    background: linear-gradient(135deg, var(--background-light) 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

#berita .section-title {
    color: var(--dark-terracotta);
    margin-bottom: 3rem;
    position: relative;
}

#berita .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--terracotta-gradient);
    border-radius: 2px;
}

/* Button Styling for News Section */
#berita .btn-outline-primary {
    border: 2px solid var(--primary-terracotta);
    color: var(--primary-terracotta);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#berita .btn-outline-primary:hover {
    background: var(--terracotta-gradient);
    border-color: var(--primary-terracotta);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--terracotta-shadow);
}

/* Responsive Design for News Cards */
@media (max-width: 768px) {
    .news-card {
        margin-bottom: 2rem;
    }
    
    .news-date {
        padding: 0.8rem;
    }
    
    .date-day {
        font-size: 1.8rem;
    }
    
    .news-content {
        padding: 1.2rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    #berita {
        padding: 3rem 0;
    }
}