.fallback-contact {
    font-family: 'Poppins', sans-serif;
}
.fallback-contact .hero {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}
.fallback-contact .hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fallback-contact .hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto 2rem;
}
.fallback-contact .stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.fallback-contact .stat-item {
    text-align: center;
}
.fallback-contact .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}
.fallback-contact .stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}
.fallback-contact .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 3rem 1rem;
    background: #f9fafb;
}
.fallback-contact .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .fallback-contact .grid {
        grid-template-columns: 2fr 1fr;
    }
}
.fallback-contact .form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.fallback-contact .form-card .top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
}
.fallback-contact .form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.fallback-contact .form-card .subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
}
.fallback-contact .form-group {
    margin-bottom: 1rem;
}
.fallback-contact .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}
.fallback-contact .form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #111827;
}
.fallback-contact .form-control:focus {
    outline: none;
    border-color: #7d2ae8;
    box-shadow: 0 0 0 3px rgba(125,42,232,0.1);
}
.fallback-contact .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .fallback-contact .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
.fallback-contact .btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.fallback-contact .btn-primary {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
}
.fallback-contact .btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.fallback-contact .sidebar-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.fallback-contact .sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fallback-contact .info-list {
    list-style: none;
    padding: 0;
}
.fallback-contact .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.fallback-contact .info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.fallback-contact .info-content .label {
    font-weight: 500;
    color: #374151;
}
.fallback-contact .info-content .value {
    color: #6b7280;
    white-space: pre-line;
}
.fallback-contact .info-content a {
    color: #7d2ae8;
    text-decoration: none;
}
.fallback-contact .info-content a:hover {
    text-decoration: underline;
}
.fallback-contact .support-card {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.fallback-contact .support-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0.2;
}
.fallback-contact .support-card .icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}
.fallback-contact .support-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.fallback-contact .support-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}
.fallback-contact .support-card .btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.fallback-contact .support-card .btn-outline-white:hover {
    background: white;
    color: #7d2ae8;
}
.fallback-contact .quick-actions {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1.5rem;
}
.fallback-contact .quick-actions h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fallback-contact .quick-list {
    list-style: none;
    padding: 0;
}
.fallback-contact .quick-item {
    margin-bottom: 0.5rem;
}
.fallback-contact .quick-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.fallback-contact .quick-item a:hover {
    background: #f3f4f6;
}
.fallback-contact .quick-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f3e8ff;
    color: #7d2ae8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fallback-contact .quick-content .title {
    font-weight: 500;
    color: #1f2937;
}
.fallback-contact .quick-content .desc {
    font-size: 0.75rem;
    color: #6b7280;
}
.fallback-contact .faq-section {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-top: 2rem;
}
.fallback-contact .faq-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.fallback-contact .faq-section .subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
}
.fallback-contact .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .fallback-contact .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.fallback-contact .faq-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 4px solid transparent;
    transition: all 0.2s;
}
.fallback-contact .faq-item:hover {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-left-color: #7d2ae8;
}
.fallback-contact .faq-item h4 {
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.fallback-contact .faq-item p {
    font-size: 0.875rem;
    color: #4b5563;
}
