/* ===== MODERN ILLUSTRATIONS FOR INFORMATION PAGES ===== */

/* Enhanced Dropdown Styles for Large Menus */
.dropdown-menu-large {
    min-width: 400px;
    max-width: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    padding: 1.5rem;
    margin-top: 0.75rem;
}

.dropdown-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.dropdown-menu-group {
    margin-bottom: 1.5rem;
}

.dropdown-menu-group:last-child {
    margin-bottom: 0;
}

.dropdown-menu-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.dropdown-item-modern {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: normal;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.dropdown-item-modern:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    transform: translateX(5px);
}

.dropdown-item-modern i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    color: #ff6b35;
}

.dropdown-item-modern:hover i {
    color: white;
}

/* Information Categories with Accordion Style */
.info-categories-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.info-category-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.info-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.info-category-header:hover {
    background: #e9ecef;
}

.info-category-item.active .info-category-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.info-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-category-item.active .info-category-title {
    color: white;
}

.info-category-title i {
    color: #ff6b35;
    font-size: 1.3rem;
}

.info-category-item.active .info-category-title i {
    color: white;
}

.info-category-toggle {
    font-size: 1.2rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.info-category-item.active .info-category-toggle {
    transform: rotate(180deg);
    color: white;
}

.info-category-content {
    padding: 0;
    background: white;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-category-item.active .info-category-content {
    display: block;
    max-height: 500px;
    padding: 1.25rem;
    animation: slideDown 0.4s ease-out;
}

.info-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-category-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-category-list li:last-child {
    border-bottom: none;
}

.info-category-list li:hover {
    background: #f8f9fa;
    margin: 0 -1.25rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
}

.info-category-list li i {
    color: #ff6b35;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.info-category-list li a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.info-category-list li a:hover {
    color: #ff6b35;
}

/* Modern Table with Enhanced Features */
.info-table-enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.info-table-enhanced .table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.info-table-enhanced .table thead th {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.5rem 1rem;
    border: none;
    border-bottom: 2px solid #e9ecef;
    text-align: center;
}

.info-table-enhanced .table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.info-table-enhanced .table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.005);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-table-enhanced .table tbody td {
    padding: 1.25rem 1rem;
    border: none;
    vertical-align: middle;
    text-align: center;
}

.info-table-enhanced .table tbody tr:last-child {
    border-bottom: none;
}

/* Enhanced Action Buttons */
.btn-enhanced {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-enhanced-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.btn-enhanced-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-enhanced-outline:hover {
    background: #ff6b35;
    color: white;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    min-width: 80px;
}

.status-available {
    background: linear-gradient(135deg, #2ed573 0%, #55a3ff 100%);
    color: white;
}

.status-limited {
    background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
    color: white;
}

.status-restricted {
    background: linear-gradient(135deg, #ef5350 0%, #d32f2f 100%);
    color: white;
}

/* Responsive Tables */
@media (max-width: 768px) {
    .info-table-enhanced .table {
        font-size: 0.85rem;
    }
    
    .info-table-enhanced .table thead th {
        padding: 1rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .info-table-enhanced .table tbody td {
        padding: 1rem 0.5rem;
    }
    
    .dropdown-menu-large {
        min-width: 300px;
        max-width: 90vw;
    }
    
    .dropdown-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .info-categories-modern {
        padding: 1.5rem;
    }
    
    .info-category-header {
        padding: 1rem;
    }
    
    .info-category-item.active .info-category-content {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .info-table-enhanced {
        border-radius: 12px;
    }
    
    .btn-enhanced {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .status-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        min-width: 70px;
    }
    
    .dropdown-menu-large {
        min-width: 280px;
        padding: 1rem;
    }
    
    .info-category-title {
        font-size: 1rem;
    }
    
    .info-category-header {
        padding: 0.875rem;
    }
}

/* Hero Illustration Container */
.hero-illustration-modern {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

/* Modern Illustration Grid */
.illustration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

/* Modern Illustration Cards */
.illustration-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.illustration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 144, 0, 0.15);
}

.illustration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9000, #e6800a);
}

/* Modern Icon Styles */
.illustration-icon {
    font-size: 3rem;
    color: #ff9000;
    margin-bottom: 1rem;
}

/* ===== SEARCH AND FILTER MODERN STYLES ===== */

.search-filter-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.search-box-modern {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon-modern {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.2rem;
    z-index: 2;
}

.search-input-modern {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.search-input-modern:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.filter-group-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select-modern {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select-modern:focus {
    outline: none;
    border-color: #ff9000;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 144, 0, 0.12);
}

/* ===== MODERN TABLE STYLES ===== */

.modern-table-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.modern-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.modern-info-table thead {
    background: linear-gradient(135deg, #ff9000 0%, #fb8916 100%);
    color: white;
}

.modern-info-table th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.modern-info-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.modern-info-table tbody tr:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modern-info-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    color: #fb8916;
}

/* Category Cell */
.category-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 2rem;
    color: #ff9000;
    background: linear-gradient(135deg, #ff900020, #fb891620);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-text h6 {
    margin: 0;
    font-weight: 600;
    color: #ff9000;
    font-size: 1rem;
}

.category-text small {
    color: #fb8916;
    font-size: 0.85rem;
}

/* Access Badges */
.access-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.access-24-7 {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
}

.access-limited {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #d63384;
}

/* Info Count */
.info-count {
    font-weight: 700;
    color: #ff9000;
    font-size: 1.1rem;
}

/* ===== MODERN DROPDOWN STYLES ===== */

.dropdown-modern {
    position: relative;
}

.dropdown-toggle-modern {
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle-modern:hover {
    border-color: #ff9000;
    color: #ff9000;
    background: #fff7f0;
}

.dropdown-toggle-modern.active {
    border-color: #ff9000;
    background: #ff9000;
    color: white;
}

.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-menu-modern.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Inline dropdown within table rows: expand row height instead of overlay */
.modern-info-table .dropdown-modern { position: relative; }
.modern-info-table .dropdown-menu-modern {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: hidden;
    display: none;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.modern-info-table .dropdown-menu-modern.show {
    visibility: visible;
    display: block;
}

/* Document panel approach: full-width expandable row under each category */
.modern-info-table .doc-panel-row { display: none; }
.modern-info-table .doc-panel-row.open { display: table-row; }
.doc-panel {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.doc-panel-title { font-weight: 700; color: #ff9000; margin-bottom: 0.5rem; }
.doc-chip-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #fb8916;
  color: #fb8916;
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.doc-chip:hover { background: #fffbf5; color: #ff9000; border-color: #ff9000; transform: translateY(-1px); }
.doc-chip i { color: #ff9000; }

.doc-panel-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }
.doc-panel-toggle[aria-expanded="true"] .toggle-icon { transform: rotate(90deg); }
.toggle-icon { transition: transform 0.2s ease; }

.dropdown-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #6b6b6b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item-modern:hover {
    background: linear-gradient(135deg, #ff900010, #fb891610);
    color: #ff9000;
    transform: translateX(5px);
}

.dropdown-item-modern i {
    font-size: 1.1rem;
}

/* ===== MODERN STATISTICS CARDS ===== */

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.stat-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9000, #fb8916);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9000;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 1.1rem;
    color: #fb8916;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc-modern {
    color: #718096;
    font-size: 0.9rem;
}

/* ===== MODERN CONTACT SECTION ===== */

.contact-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-modern-header {
    margin-bottom: 3rem;
}

.contact-icon-main {
    font-size: 4rem;
    color: #667eea;
    opacity: 0.8;
}

.contact-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-subtitle-modern {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card-content h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-card-content p {
    color: #718096;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-card-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.contact-modern-cta {
    margin-top: 2rem;
}

/* ===== QUICK ACCESS MODERN ===== */

.quick-access-modern {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.quick-access-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.quick-access-subtitle {
    color: #fb8916;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

@media (min-width: 992px) {
    .quick-access-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    .stats-grid-modern { grid-template-columns: repeat(4, 1fr); }
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
@media (min-width: 992px) {
    .contact-modern-grid { grid-template-columns: repeat(3, 1fr); }
}

.quick-access-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-access-item:hover {
    background: white;
    border-color: #ff9000;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.item-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9000, #fb8916);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.quick-access-item h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff9000;
    margin-bottom: 0.5rem;
}

.quick-access-item p {
    color: #fb8916;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ===== INFO ICON LARGE ===== */

.info-icon-large {
    font-size: 5rem;
    color: #ff6b35;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* ===== ANIMATION CLASSES ===== */

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .search-filter-modern {
        padding: 1.5rem;
    }
    
    .filter-group-modern {
        flex-direction: column;
    }
    
    .modern-info-table {
        font-size: 0.9rem;
    }
    
    .modern-info-table th,
    .modern-info-table td {
        padding: 1rem 0.5rem;
    }
    
    .category-cell {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .dropdown-menu-modern {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        min-width: 280px;
        max-width: 90vw;
    }
    
    .dropdown-menu-modern.show {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .stats-grid-modern,
    .contact-modern-grid,
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DARK MODE SUPPORT ===== */

/* Disable dark mode overrides for DIP area */
@media (prefers-color-scheme: dark) {
    .search-filter-modern,
    .modern-table-container,
    .stat-card-modern,
    .contact-card-modern,
    .quick-access-modern,
    .quick-access-item {
        background: #ffffff;
        border-color: #e2e8f0;
    }
    .search-input-modern,
    .filter-select-modern,
    .dropdown-toggle-modern,
    .dropdown-item-modern { color: #ff9000; }
}

/* ===== HIGH CONTRAST MODE ===== */

@media (prefers-contrast: high) {
    .search-filter-modern,
    .modern-table-container,
    .stat-card-modern,
    .contact-card-modern,
    .quick-access-modern {
        border: 2px solid #000;
    }
    
    .search-input-modern,
    .filter-select-modern,
    .dropdown-toggle-modern {
        border-width: 2px;
    }
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
    .animate-fadeInUp,
    .animate-fadeInLeft,
    .animate-fadeInRight,
    .animate-scaleIn {
        animation: none;
    }
    
    .search-input-modern:focus,
    .filter-select-modern:focus,
    .dropdown-toggle-modern:hover,
    .dropdown-item-modern:hover,
    .modern-info-table tbody tr:hover,
    .stat-card-modern:hover,
    .contact-card-modern:hover,
    .quick-access-item:hover {
        transform: none;
        transition: none;
    }
}
    display: inline-block;
    transition: all 0.3s ease;
}

.illustration-card:hover .illustration-icon {
    transform: scale(1.1);
    color: #e6800a;
}

/* Modern SVG Illustrations */
.illustration-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 1rem auto;
    display: block;
}

/* Gradient Background Illustrations */
.illustration-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.illustration-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.illustration-card:hover .illustration-gradient::after {
    transform: rotate(45deg) translate(50%, 50%);
}

/* Modern Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modern Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

/* Staggered Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }

/* Modern Hero Section */
.hero-modern {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-modern::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
}

/* Modern Table Styles */
.modern-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.modern-table thead {
    background: linear-gradient(135deg, #ff9000 0%, #e6800a 100%);
    color: white;
}

.modern-table th {
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.modern-table td {
    padding: 1.2rem 1rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.modern-table tbody tr {
    transition: all 0.3s ease;
}

.modern-table tbody tr:hover {
    background-color: rgba(255, 144, 0, 0.05);
    transform: translateX(5px);
}

/* Modern Dropdown Styles */
.modern-dropdown {
    position: relative;
    margin: 1rem 0;
}

.modern-dropdown-toggle {
    background: linear-gradient(135deg, #ff9000 0%, #e6800a 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.modern-dropdown-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.3);
}

.modern-dropdown-toggle::after {
    content: '▼';
    transition: transform 0.3s ease;
}

.modern-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.modern-dropdown-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.modern-dropdown-content.show {
    max-height: 500px;
}

/* Modern Info Cards */
.info-card-modern {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 144, 0, 0.1);
    margin-bottom: 1.5rem;
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 144, 0, 0.15);
}

.info-card-header-modern {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.info-card-icon-modern {
    background: linear-gradient(135deg, #ff9000 0%, #e6800a 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .illustration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .illustration-card {
        padding: 1.5rem;
    }
    
    .illustration-icon {
        font-size: 2.5rem;
    }
    
    .modern-table {
        font-size: 0.9rem;
    }
    
    .modern-table th,
    .modern-table td {
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .illustration-card {
        padding: 1.2rem;
    }
    
    .illustration-icon {
        font-size: 2rem;
    }
    
    .info-card-modern {
        padding: 1.5rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .illustration-card {
        background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
        color: #ffffff;
        border-color: rgba(255, 144, 0, 0.2);
    }
    
    .info-card-modern {
        background: #2d2d2d;
        color: #ffffff;
        border-color: rgba(255, 144, 0, 0.2);
    }
    
    .modern-dropdown-content {
        background: #2d2d2d;
        color: #ffffff;
    }
    
    .modern-table {
        background: #2d2d2d;
        color: #ffffff;
    }
    
    .modern-table td {
        border-bottom-color: #444;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .illustration-card,
    .info-card-modern,
    .modern-dropdown-toggle {
        transition: none;
    }
    
    .animate-fade-in-up,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-scale-in {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .illustration-card {
        border: 2px solid #ff9000;
    }
    
    .info-card-modern {
        border: 2px solid #ff9000;
    }
    
    .modern-dropdown-toggle {
        border: 2px solid #ffffff;
    }
}

/* Focus States */
.modern-dropdown-toggle:focus,
.info-card-modern:focus {
    outline: 2px solid #ff9000;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .illustration-card {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .info-card-modern {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .modern-table {
        background: white !important;
        box-shadow: none !important;
    }
}

/* Access Badge Styles */
.update-schedule {
    background: linear-gradient(135deg, #2ed573 0%, #1e90ff 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}

.access-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}

.access-24-7 {
    background: linear-gradient(135deg, #2ed573 0%, #55a3ff 100%);
    color: white;
}

/* ===== FAQ COMPLETE SECTION ===== */
.faq-section-complete {
    background: #f9fafb;
}

.faq-search-box {
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.2rem;
}

.faq-search-box input {
    padding: 14px 16px 14px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search-box input:focus {
    border-color: #ff9000;
    box-shadow: 0 0 0 4px rgba(255, 144, 0, 0.1);
}

.faq-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    padding: 10px 20px;
    border: none;
    background: #e5e7eb;
    color: #4b5563;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background: #ffb366;
    color: #fff;
}

.faq-tab.active {
    background: linear-gradient(135deg, #ff9000, #ff7b00);
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-complete {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.faq-item-complete:hover {
    box-shadow: 0 8px 25px rgba(255, 144, 0, 0.1);
}

.faq-item-complete.active {
    box-shadow: 0 10px 35px rgba(255, 144, 0, 0.15);
}

.faq-question-complete {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-complete:hover {
    background: #fef8f0;
}

.faq-item-complete.active .faq-question-complete {
    background: linear-gradient(135deg, #ff9000, #ff7b00);
    color: #fff;
}

.faq-question-complete span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    flex: 1;
    padding-right: 16px;
}

.faq-item-complete.active .faq-question-complete span {
    color: #fff;
}

.faq-question-complete i {
    font-size: 1.4rem;
    color: #ff9000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-complete.active .faq-question-complete i {
    transform: rotate(180deg);
    color: #fff;
}

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

.faq-item-complete.active .faq-answer-complete {
    max-height: 500px;
}

.faq-answer-complete p {
    padding: 20px 28px 28px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    background: #fafafa;
}

.faq-bottom-cta p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .faq-tab {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .faq-question-complete {
        padding: 14px 18px;
    }
    
    .faq-question-complete span {
        font-size: 0.95rem;
    }
    
    .faq-answer-complete p {
        padding: 0 18px 16px;
        font-size: 0.9rem;
    }
}
