/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Page Container */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Page Header */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #005fa3;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.contact-header h1 {
    color: #005fa3;
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 700;
}

.page-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Introduction Section */
.contact-intro {
    margin-bottom: 3rem;
}

.intro-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.intro-content h2 {
    color: #005fa3;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.response-commitment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #005fa3;
}

.commitment-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.commitment-content h4 {
    color: #005fa3;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.commitment-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Methods Grid */
.contact-methods {
    margin-bottom: 3rem;
}

.contact-methods h2 {
    color: #005fa3;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #005fa3;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.method-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.method-content ul {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    flex-grow: 1;
}

.method-content li {
    margin-bottom: 0.3rem;
}

.contact-action {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-btn.primary {
    background: #005fa3;
    color: white;
}

.contact-btn.primary:hover {
    background: #004d85;
    transform: translateY(-2px);
}

.contact-btn.secondary {
    background: #f8f9fa;
    color: #005fa3;
    border: 2px solid #005fa3;
}

.contact-btn.secondary:hover {
    background: #005fa3;
    color: white;
    transform: translateY(-2px);
}

/* Social Community Section */
.social-community {
    margin-bottom: 3rem;
}

.social-community h2 {
    color: #005fa3;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.social-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.social-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.social-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-3px);
    background: #e9ecef;
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-item h4 {
    color: #005fa3;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.social-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.social-link {
    color: #005fa3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.social-link:hover {
    text-decoration: underline;
}

/* Mobile Apps Section */
.mobile-apps {
    margin-bottom: 3rem;
}

.mobile-apps h2 {
    color: #005fa3;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.apps-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.apps-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.app-support {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-support:hover {
    transform: translateY(-3px);
    background: #e9ecef;
}

.app-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.app-support h4 {
    color: #005fa3;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.app-support p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.app-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-link, .support-link {
    color: #005fa3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: white;
    transition: all 0.3s ease;
}

.app-link:hover, .support-link:hover {
    background: #005fa3;
    color: white;
}

/* FAQ Reference Section */
.faq-reference {
    margin-bottom: 3rem;
}

.faq-reference h2 {
    color: #005fa3;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.faq-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.faq-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.topic-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.topic-item h4 {
    color: #005fa3;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.topic-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.faq-action {
    text-align: center;
}

.faq-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #005fa3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    background: #004d85;
    transform: translateY(-2px);
}

/* Response Info Section */
.response-info {
    margin-bottom: 3rem;
}

.response-info h2 {
    color: #005fa3;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.response-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.response-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.response-item h4 {
    color: #005fa3;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.response-item ul {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.response-item li {
    margin-bottom: 0.5rem;
}

/* Contact Tips Section */
.contact-tips {
    margin-bottom: 3rem;
}

.contact-tips h2 {
    color: #005fa3;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tips-content h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

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

.tip-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    background: #e9ecef;
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tip-item h4 {
    color: #005fa3;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Emergency Notice */
.emergency-notice {
    margin-bottom: 3rem;
}

.notice-content {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    border-radius: 8px;
}

.notice-content h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.notice-content p {
    color: #856404;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notice-content ul {
    color: #856404;
    padding-left: 1.2rem;
}

.notice-content li {
    margin-bottom: 0.5rem;
}

.notice-content a {
    color: #005fa3;
    font-weight: 600;
}

/* Return Navigation */
.return-navigation {
    margin-bottom: 2rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-btn.primary {
    background: #005fa3;
    color: white;
}

.nav-btn.primary:hover {
    background: #004d85;
    transform: translateY(-2px);
}

.nav-btn.secondary {
    background: #f8f9fa;
    color: #005fa3;
    border: 2px solid #005fa3;
}

.nav-btn.secondary:hover {
    background: #005fa3;
    color: white;
    transform: translateY(-2px);
}

/* Legacy Contact Info Styles (for compatibility) */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.contact-info h3 {
    color: #005fa3;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-info li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #005fa3;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-info a {
    color: #005fa3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: #0066b3;
}

.contact-info a::before {
    content: "🔗";
    font-size: 1.2rem;
}

/* Responsive Design */
@media (min-width: 769px) {
    .methods-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .response-commitment {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-topics {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .nav-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 1.5rem 1rem;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .intro-content,
    .social-content,
    .apps-content,
    .faq-content,
    .tips-content {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-icon {
        margin-bottom: 0.5rem;
    }
    
    .app-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}
