/* Resources Section Styles */


/* Emergency Header */

.emergency-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.emergency-header-content {
    margin-bottom: 2rem;
}

.emergency-header h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.emergency-alert {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.alert-icon {
    font-size: 2rem;
    color: #fef3c7;
    flex-shrink: 0;
}

.alert-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.alert-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}


/* Emergency Quick Access */

.emergency-quick-access {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.quick-contact-card.critical {
    border-top: 4px solid #dc2626;
}

.quick-contact-card.urgent {
    border-top: 4px solid #f97316;
}

.quick-contact-card.important {
    border-top: 4px solid #2563eb;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.quick-contact-card.critical .contact-icon {
    background: #dc2626;
}

.quick-contact-card.urgent .contact-icon {
    background: #f97316;
}

.quick-contact-card.important .contact-icon {
    background: #2563eb;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.contact-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.contact-number:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
}


/* Search Contacts Section */

.search-contacts-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.search-contacts-bar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input-wrapper {
    display: flex;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    z-index: 1;
}

.search-input-wrapper input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input-wrapper button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1rem 2rem;
}

.search-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}


/* Global Contacts Section */

.global-contacts-section {
    padding: 2rem 0;
}

.continent-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.continent-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.continent-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.continent-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    min-height: 300px;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    animation: fadeIn 0.5s ease-out;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-country {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.country-flag {
    width: 32px;
    height: 24px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.country-name {
    font-weight: 600;
    color: var(--dark-color);
}

.contact-category {
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-number-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.number-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.number-info h4 {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.number-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.number-value:hover {
    color: var(--primary-color);
}

.contact-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-call {
    flex: 1;
    padding: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-call:hover {
    background: var(--primary-dark);
}

.btn-save {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: var(--border-radius);
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-save:hover {
    background: var(--primary-color);
    color: white;
}


/* Loading State */

.loading-state {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f4f6;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-state p {
    color: var(--gray-color);
}


/* No Contacts Found */

.no-contacts-found {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-contacts-found i {
    font-size: 4rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.no-contacts-found h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.no-contacts-found p {
    color: var(--gray-color);
    margin: 0;
}


/* Organizations Section */

.organizations-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.organizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.organization-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.organization-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.org-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.org-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.org-country {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.org-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.org-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

.contact-link i {
    width: 20px;
    text-align: center;
}


/* Report Guide Section */

.report-guide-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
}

.report-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .report-guide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.guide-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.guide-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.guide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.guide-image {
    text-align: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
}


/* Travel Safety Section */

.travel-safety-section {
    padding: 4rem 0;
}

.travel-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.travel-tip-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.travel-tip-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tip-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tip-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-content li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tip-content li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.embassy-contacts {
    background: #f0f9ff;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #bae6fd;
}

.embassy-contacts h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.embassy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.embassy-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.embassy-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.embassy-link i {
    font-size: 1.25rem;
}


/* Download Resources */

.download-resources {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    text-align: center;
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.resource-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.resource-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.resource-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}


/* Safety Header */

.safety-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.safety-header-content {
    margin-bottom: 2rem;
}

.safety-header h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.safety-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.safety-stat {
    text-align: center;
}

.safety-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.safety-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safety-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.quick-link i {
    font-size: 2rem;
}

.quick-link span {
    font-weight: 500;
    font-size: 0.9rem;
}


/* Safety Sections */

.safety-section {
    padding: 4rem 0;
}

.safety-section.alt-bg {
    background: #f8fafc;
}

.safety-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.safety-tip-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.safety-tip-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tip-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tip-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.tip-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-details li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tip-details li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}


/* Safety Checklist */

.safety-checklist {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.safety-checklist h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.checklist-item label {
    color: var(--dark-color);
    cursor: pointer;
    user-select: none;
}


/* Age Group Tabs */

.age-group-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.age-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.age-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.age-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}


/* Safety Rules */

.safety-rules {
    margin-bottom: 3rem;
}

.safety-rules h3 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rule-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.rule-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rule-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.rule-content p {
    color: var(--gray-color);
    margin: 0;
}


/* Safety Tools */

.safety-tools {
    margin-bottom: 3rem;
}

.safety-tools h3 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.tool-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tool-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.tool-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}


/* Travel Timeline */

.travel-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.timeline-phase {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-content li i {
    color: var(--primary-color);
}


/* Travel Documents */

.travel-documents {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.travel-documents h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.documents-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.document-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.document-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.document-item p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
}

.doc-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.doc-status.required {
    background: #fee2e2;
    color: #dc2626;
}

.doc-status.recommended {
    background: #fef3c7;
    color: #d97706;
}


/* Safety Plan */

.safety-plan {
    margin-bottom: 3rem;
}

.safety-plan h3 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.plan-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}


/* Resources Box */

.resources-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .resources-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.resource-info h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.resource-info p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}


/* Digital Safety */

.digital-safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.digital-tip-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.digital-tip-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}


/* App Recommendations */

.app-recommendations {
    margin-bottom: 3rem;
}

.app-recommendations h3 {
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.app-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: var(--transition);
}

.app-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.app-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.app-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.app-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.app-link:hover {
    background: var(--primary-color);
    color: white;
}


/* Safety Quiz */

.safety-quiz-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
}

.quiz-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.quiz-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-header h2 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quiz-header p {
    color: var(--gray-color);
    margin: 0;
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: block;
    text-align: center;
}

.quiz-question h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.quiz-option.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.quiz-option.selected .option-letter,
.quiz-option.selected .option-text {
    color: white;
}

.option-letter {
    width: 30px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-color);
    flex-shrink: 0;
}

.option-text {
    color: var(--dark-color);
    font-weight: 500;
}

.quiz-results {
    text-align: center;
}

.results-header h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.results-header p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.results-message {
    background: #f0f9ff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}


/* Download Guide */

.download-guide-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.download-guide {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .download-guide {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.guide-content h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.guide-content p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 576px) {
    .guide-features {
        grid-template-columns: 1fr;
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
}

.feature i {
    color: var(--primary-color);
}


/* Emergency Modal */

.emergency-modal .modal-content {
    max-width: 500px;
}

.emergency-call-info {
    text-align: center;
}

.call-icon {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.emergency-call-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.emergency-call-info p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.call-number-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: monospace;
}

.call-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-call {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.call-note {
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    color: var(--gray-color);
    font-size: 0.9rem;
}

.call-note i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}


/* Responsive Design */

@media (max-width: 768px) {
    .emergency-quick-access {
        grid-template-columns: 1fr;
    }
    .search-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-btn {
        text-align: center;
    }
    .continent-filter {
        flex-direction: column;
        align-items: stretch;
    }
    .continent-btn {
        text-align: center;
    }
    .safety-quick-links {
        flex-direction: column;
        align-items: stretch;
    }
    .quick-link {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}