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

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease;
}

.contact-hero-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-wave {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.contact-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Contact Main Section */
.contact-main {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 2.5rem;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

/* Form Styles */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group label i {
    color: #667eea;
    margin-right: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23647 48b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 16px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.captcha-wrapper {
    margin: 1rem 0;
}

.btn-submit {
    position: relative;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-shine {
    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 ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover .btn-shine {
    left: 100%;
}

/* Contact Info Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Support Card */
.support-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.support-card .info-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.support-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.support-card .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.support-hours {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.support-hours i {
    margin-right: 0.5rem;
}

/* Contact Methods */
.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #764ba2;
    font-size: 1.2rem;
}

.method-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.method-details p {
    margin-bottom: 0.25rem;
}

.method-details a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Social Links Grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.discord {
    background: #5865f2;
}

.social-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Quick Card */
.faq-quick-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: none;
}

.faq-quick-card i {
    font-size: 2.5rem;
    color: #d97706;
}

.faq-quick-content h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.faq-quick-content p {
    color: #b45309;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-faq-quick {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: #d97706;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-faq-quick:hover {
    background: #b45309;
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    padding: 2rem 0 5rem;
    background: var(--bg-light);
}

.map-card {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
}

.map-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.map-visual {
    max-width: 800px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Contact CTA */
.contact-cta {
    padding: 2rem 0 5rem;
    background: var(--bg-light);
}

.cta-gradient-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content-wrapper h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content-wrapper p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-support {
    padding: 1rem 2rem;
    background: white;
    color: #764ba2;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-premium-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-free-support {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-free-support:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== FAQ PAGE STYLES ===== */

/* FAQ Hero */
.faq-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.faq-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-hero-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* FAQ Search */
.faq-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.25rem 0.25rem 0.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-search-box i {
    color: #667eea;
    font-size: 1.1rem;
}

.faq-search-input {
    flex: 1;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    background: transparent;
}

.faq-search-input:focus {
    outline: none;
}

.search-hint {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.faq-wave {
    position: relative;
    width: 100%;
}

.faq-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* FAQ Categories */
.faq-categories {
    padding: 3rem 0 2rem;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card i {
    font-size: 1.5rem;
    color: #667eea;
}

.category-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.category-card.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

.category-card.active i,
.category-card.active span {
    color: white;
}

/* FAQ Main */
.faq-main {
    padding: 0 0 5rem;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 2.5rem;
}

/* FAQ Accordion Column */
.faq-card {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.faq-header {
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: var(--text-muted);
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    color: #764ba2;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.accordion-button i {
    color: #667eea;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.accordion-button:hover {
    background: #f8fafc;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea05, #764ba205);
    border-bottom: 1px solid var(--border);
}

.accordion-button:not(.collapsed) i {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-white);
    line-height: 1.7;
    color: var(--text-muted);
}

/* FAQ Tags */
.faq-tags {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--dark);
}

/* FAQ Steps */
.faq-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border);
}

.faq-steps li i {
    width: 24px;
    color: #667eea;
}

/* Software Grid */
.software-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.software-badge {
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: 8px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Speed Comparison */
.speed-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.speed-tier {
    padding: 1rem;
    border-radius: 12px;
}

.speed-tier.free-tier {
    background: var(--light);
}

.speed-tier.premium-tier {
    background: linear-gradient(135deg, #667eea10, #764ba210);
}

.speed-tier h5 {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.speed-tier h5 i {
    color: #667eea;
}

.speed-meter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.speed-meter span {
    min-width: 100px;
    font-weight: 600;
}

.speed-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.speed-bar div {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
}

/* Premium Benefits Grid */
.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--light);
    border-radius: 8px;
    font-size: 0.9rem;
}

.benefit-item i {
    color: #10b981;
}

.btn-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* FAQ Sidebar */
.faq-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Support Card in Sidebar */
.support-card {
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.support-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.support-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-contact {
    padding: 0.9rem;
    background: white;
    color: #764ba2;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.support-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Stats Card */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-muted);
}

.stat-value {
    font-weight: 700;
    color: var(--dark);
}

/* Popular Hosts */
.popular-hosts {
    margin: 1.5rem 0;
}

.host-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.host-item:last-child {
    border-bottom: none;
}

.host-item i {
    color: #764ba2;
    width: 24px;
}

.host-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.host-status {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.host-status.online {
    background: #d1fae5;
    color: #065f46;
}

.host-status.busy {
    background: #fee2e2;
    color: #991b1b;
}

.btn-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #e2e8f0;
}

/* Ad Card */
.ad-card {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.ad-placeholder-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.ad-placeholder-vertical i {
    font-size: 2rem;
}

/* Premium CTA Card */
.premium-cta-card {
    text-align: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: none;
}

.premium-cta-card i {
    font-size: 2.5rem;
    color: #d97706;
    margin-bottom: 1rem;
}

.premium-cta-card h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.premium-cta-card p {
    color: #b45309;
    margin-bottom: 1rem;
}

.premium-price {
    margin-bottom: 1.5rem;
}

.premium-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #92400e;
}

.premium-price .period {
    color: #b45309;
}

.btn-premium-small {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #d97706;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium-small:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

/* Still Questions Section */
.still-questions {
    padding: 2rem 0 5rem;
    background: var(--bg-light);
}

.questions-card {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid var(--border);
    text-align: center;
}

.questions-content h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.questions-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.questions-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-email-secondary {
    padding: 1rem 2rem;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.btn-email-secondary:hover {
    background: #e2e8f0;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-hero-title,
    .faq-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-title,
    .faq-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle,
    .faq-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card,
    .faq-card {
        padding: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons,
    .questions-actions {
        flex-direction: column;
    }
    
    .btn-premium-support,
    .btn-free-support,
    .btn-contact-primary,
    .btn-email-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-title,
    .faq-hero-title {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-badge,
    .faq-badge {
        font-size: 0.8rem;
    }
    
    .contact-form-card,
    .faq-card,
    .info-card,
    .sidebar-card {
        padding: 1.25rem;
    }
    
    .faq-search-box {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }
    
    .faq-search-box i {
        display: none;
    }
    
    .faq-search-input {
        width: 100%;
        border-radius: 50px;
        border: 1px solid var(--border);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== CLOUDFLARE TURNSTILE STYLES ===== */

.turnstile-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.turnstile-wrapper:hover {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.cf-turnstile {
    margin: 0 auto;
}

.captcha-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    color: #0369a1;
    font-size: 0.85rem;
    border: 1px solid #b8e1ff;
}

.captcha-hint i {
    color: #0284c7;
    font-size: 1rem;
}

/* Form Footer Note */
.form-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-footer-note i {
    color: #10b981;
}

/* Direct Email Card */
.direct-email-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #e0f2fe, #b8e1ff);
    border: none;
}

.direct-email-card i {
    font-size: 2.5rem;
    color: #0284c7;
}

.direct-email-content h4 {
    color: #075985;
    margin-bottom: 0.5rem;
}

.direct-email-content p {
    color: #0369a1;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-direct-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: #0284c7;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-direct-email:hover {
    background: #075985;
    transform: translateX(5px);
}

/* Map Stats */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.map-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.map-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1.2;
}

.map-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Alert Styles for Contact Form */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInDown 0.5s ease;
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert-warning {
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
}

.alert i {
    font-size: 1.2rem;
}

/* Responsive adjustments for Turnstile */
@media (max-width: 480px) {
    .turnstile-wrapper {
        overflow-x: auto;
        padding: 0.25rem;
    }
    
    .cf-turnstile {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .captcha-hint {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .direct-email-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation for alerts */
@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Turnstile dark theme support (optional) */
@media (prefers-color-scheme: dark) {
    .turnstile-wrapper {
        background: #1e293b;
        border-color: #334155;
    }
    
    .captcha-hint {
        background: #1e293b;
        border-color: #334155;
        color: #94a3b8;
    }
}

/* ===== SITEMAP & DISCLAIMER PAGE STYLES ===== */
/* Using only existing color variables - no new CSS bloat */

/* Page Header - Reusing existing styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    position: relative;
    color: white;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.page-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-meta i {
    margin-right: 0.5rem;
}

/* Sitemap Section */
.sitemap-section {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sitemap-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.sitemap-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sitemap-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.sitemap-card-header i {
    font-size: 1.5rem;
    color: #764ba2;
}

.sitemap-card-header h2 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--dark);
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li {
    margin-bottom: 1rem;
}

.sitemap-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.sitemap-links li a i {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sitemap-links li a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.sitemap-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 1.5rem;
}

/* Sitemap Notice */
.sitemap-notice {
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.notice-icon i {
    font-size: 3rem;
    color: #764ba2;
}

.notice-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.notice-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.btn-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-notice:hover {
    background: var(--primary-dark);
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-link-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
}

.quick-link i {
    font-size: 1.8rem;
    color: #764ba2;
}

.quick-link span {
    font-weight: 500;
}

/* Legal Pages */
.legal-section {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.legal-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.legal-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.legal-card-header i {
    font-size: 1.2rem;
    color: #764ba2;
}

.legal-card-header h2 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--dark);
}

.legal-card-body {
    padding: 1.5rem;
}

.legal-card-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-card-body p:last-child {
    margin-bottom: 0;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.legal-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    border-bottom: 1px dashed var(--border);
}

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

.legal-list li i {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.legal-list.ordered {
    list-style: decimal;
    padding-left: 1.5rem;
}

.legal-list.ordered li {
    display: list-item;
    border-bottom: none;
    padding: 0.25rem 0;
}

/* Legal Notice */
.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    margin-top: 1rem;
}

.legal-notice i {
    color: #d97706;
    font-size: 1.2rem;
}

.legal-notice p {
    color: #92400e;
    margin: 0;
    font-size: 0.95rem;
}

/* Legal Contact */
.legal-contact {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.contact-row i {
    width: 20px;
    color: #764ba2;
}

.contact-row a {
    color: var(--primary);
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

/* Legal Sidebar */
.legal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

.sidebar-card h3 i {
    color: #764ba2;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sidebar-links li a i {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sidebar-links li a:hover {
    background: var(--light);
    color: var(--primary);
}

.sidebar-links li.active a {
    background: var(--primary);
    color: white;
}

.sidebar-links li.active a i {
    color: white;
}

.sidebar-updated {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.sidebar-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Sidebar Support Card */
.sidebar-card.support-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.sidebar-card.support-card i {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.sidebar-card.support-card h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-card.support-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.btn-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    color: #764ba2;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

/* Sidebar Notice Card */
.sidebar-card.notice-card {
    background: #fef3c7;
    border-color: #fde68a;
    text-align: center;
}

.sidebar-card.notice-card i {
    font-size: 2rem;
    color: #d97706;
    margin-bottom: 1rem;
}

.sidebar-card.notice-card h3 {
    color: #92400e;
    border-bottom-color: #fde68a;
}

.sidebar-card.notice-card p {
    color: #b45309;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .sitemap-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-card-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== RECAPTCHA STYLES ===== */
.recaptcha-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.recaptcha-wrapper:hover {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.g-recaptcha {
    margin: 0 auto;
}

.captcha-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    color: #0369a1;
    font-size: 0.85rem;
    border: 1px solid #b8e1ff;
}

.captcha-hint i {
    color: #0284c7;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .recaptcha-wrapper {
        overflow-x: auto;
        padding: 0.25rem;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}