/* Legal Pages Styles (Privacy Policy & Terms) */

/* Legal Header */
.legal-header {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #2d1b69 70%, #9d4edd 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.legal-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #9d4edd, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.legal-meta i {
    color: #ffd700;
}

/* Legal Content */
.legal-content {
    background: linear-gradient(135deg, #1a2332 0%, #2d1b69 100%);
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.table-of-contents,
.quick-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-of-contents h3,
.quick-summary h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.table-of-contents a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    transform: translateX(5px);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item i {
    color: #00d4ff;
    width: 16px;
    flex-shrink: 0;
}

/* Main Content */
.content-main {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-section h2 {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.content-section h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

.content-section p {
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-section ul,
.content-section ol {
    color: #b8c5d6;
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-section strong {
    color: #00d4ff;
    font-weight: 600;
}

.content-section a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #00d4ff;
}

/* Special Notice Boxes */
.important-notice,
.security-notice,
.legal-notice {
    display: flex;
    gap: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.security-notice {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.legal-notice {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.important-notice i,
.security-notice i,
.legal-notice i {
    color: #ffc107;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-notice i {
    color: #28a745;
}

.legal-notice i {
    color: #00d4ff;
}

.important-notice h4,
.security-notice h4,
.legal-notice h4 {
    color: #ffc107;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.security-notice h4 {
    color: #28a745;
}

.legal-notice h4 {
    color: #00d4ff;
}

.important-notice p,
.security-notice p,
.legal-notice p {
    margin: 0;
    color: #e9ecef;
}

/* Contact Information */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method i {
    color: #00d4ff;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method h4 {
    color: #ffd700;
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.contact-method p {
    margin: 0;
    color: #b8c5d6;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-method a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    color: #ffd700;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 25px;
}

.response-time i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.response-time p {
    margin: 0;
    color: #e9ecef;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .table-of-contents,
    .quick-summary {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .legal-header {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-main {
        padding: 25px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .important-notice,
    .security-notice,
    .legal-notice {
        flex-direction: column;
        gap: 10px;
    }
    
    .important-notice i,
    .security-notice i,
    .legal-notice i {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .content-main {
        padding: 20px;
    }
    
    .table-of-contents,
    .quick-summary {
        padding: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-method i {
        align-self: center;
    }
}


/* Thank You Page Styles */

/* Thanks Hero Section */
.thanks-hero {
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #2d1b69 70%, #9d4edd 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
}

.success-icon i {
    font-size: 3.5rem;
    color: white;
}

.thanks-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #28a745, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #b8c5d6;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Confirmation Details */
.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.detail-item i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
    display: block;
}

.detail-item h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.detail-item p {
    color: #b8c5d6;
    margin: 0;
    line-height: 1.5;
}

.detail-item strong {
    color: #00d4ff;
    font-weight: 700;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099cc, #7a3bb8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.btn-outline:hover {
    background: #ffd700;
    color: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Additional Resources */
.additional-resources {
    background: linear-gradient(135deg, #1a2332 0%, #2d1b69 100%);
    padding: 80px 0;
}

.additional-resources h2 {
    text-align: center;
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-icon i {
    font-size: 2rem;
    color: white;
}

.resource-card h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-card p {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.resource-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(3px);
}




@media (max-width: 768px) {
    .thanks-title {
        font-size: 2.5rem;
    }
    
    .confirmation-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thanks-hero {
        padding: 80px 0;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .detail-item {
        padding: 25px 20px;
        text-align: center;
    }
    
    .step {
        padding: 20px;
    }
    
    .resource-card {
        padding: 25px 20px;
    }
    
    .additional-resources h2 {
        font-size: 1.8rem;
    }
}