/* Mobile Layout Improvements - No Overlapping */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    animation: gradientShift 10s ease infinite;
    background-size: 200% 200%;
    overflow-x: hidden;
    width: 100%;
    font-weight: 400;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    padding: 40px 20px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: block;
    margin: 0 auto 15px auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo:hover {
    animation: logoSpin 1s ease-in-out;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header h1 {
    font-size: 3.2em;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.8), 2px 2px 4px rgba(0,0,0,0.3); }
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
    margin: 0 auto 32px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 700px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
}

.input-section label {
    display: block;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.input-section input {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.input-section input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: scale(1.02);
}

#unmute-btn {
    width: 100%;
    padding: 18px 24px;
    min-height: 56px;
    font-size: 1.15em;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

#unmute-btn i {
    font-size: 1.2em;
}

#unmute-btn .btn-text {
    flex: 1;
}

#unmute-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

#unmute-btn:hover::before {
    left: 100%;
}

#unmute-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
    background-position: 100% 0;
}

#unmute-btn:active {
    transform: translateY(0);
}

#unmute-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.progress-section {
    text-align: center;
    padding: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.3s;
    border-radius: 10px;
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.status-text {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.result-section {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #FF9800;
    color: white;
    font-size: 3em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    animation: scaleInBounce 0.6s ease-out;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
}

@keyframes scaleInBounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    70% { transform: scale(0.9) rotate(360deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.result-section h2 {
    color: #FF9800;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.result-section p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.wait-message {
    font-size: 1.15em;
    color: #333;
    font-weight: 500;
}

.time-info {
    font-size: 1.2em;
    color: #FF9800;
    font-weight: 600;
    margin: 20px 0;
}

.time-info strong {
    color: #F57C00;
}

.patience-note {
    font-size: 1em;
    color: #777;
    font-style: italic;
    margin-bottom: 25px;
}

.reset-btn {
    padding: 12px 30px;
    font-size: 1em;
    color: white;
    background: #667eea;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.info-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px;
    color: white;
    margin: 0 auto 32px auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    animation: slideInUp 0.8s ease-out 0.3s both;
    width: 100%;
    max-width: 700px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-box h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    animation: fadeInLeft 0.5s ease-out both;
}

.info-box li:nth-child(1) { animation-delay: 0.4s; }
.info-box li:nth-child(2) { animation-delay: 0.5s; }
.info-box li:nth-child(3) { animation-delay: 0.6s; }
.info-box li:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* MOBILE LAYOUT FIX - No More Overlapping */
@media (max-width: 600px) {
    body {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10px;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Navigation Fix */
    .navbar {
        padding: 8px 10px;
        gap: 5px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar a {
        padding: 8px 12px;
        font-size: 0.8em;
        flex: 1;
        text-align: center;
        min-width: 60px;
        max-width: 80px;
    }
    
    /* Header Fix */
    .header {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .header h1 {
        font-size: 1.4em;
        line-height: 1.1;
        margin-bottom: 5px;
        word-break: break-word;
    }
    
    .subtitle {
        font-size: 0.85em;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }
    
    /* Card Fix - No Overflow */
    .card {
        padding: 15px 12px;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Input Section Fix */
    .input-section {
        width: 100%;
    }
    
    .input-section label {
        font-size: 0.9em;
        margin-bottom: 6px;
        display: block;
    }
    
    .input-section input {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border-radius: 6px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    
    #unmute-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.9em;
        border-radius: 6px;
        min-height: 44px;
        box-sizing: border-box;
    }
    
    /* Info Box Fix */
    .info-box {
        padding: 12px 10px;
        border-radius: 8px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .info-box h2 {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .info-box ul {
        padding-left: 15px;
        margin: 5px 0;
    }
    
    .info-box li {
        padding: 3px 0;
        font-size: 0.8em;
        line-height: 1.3;
        word-break: break-word;
    }
    /* SEO Content Mobile Fix */
    .seo-content {
        padding: 12px 10px;
        margin: 10px 0;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .seo-content h2 {
        font-size: 1.1em;
        margin-bottom: 8px;
        margin-top: 12px;
    }
    
    .seo-content h2:first-child {
        margin-top: 0;
    }
    
    .seo-content h3 {
        font-size: 1em;
        margin-top: 15px;
        margin-bottom: 6px;
    }
    
    .seo-content p {
        font-size: 0.85em;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .seo-content ul {
        margin: 8px 0;
        padding-left: 18px;
    }
    
    .seo-content ul li {
        font-size: 0.8em;
        line-height: 1.3;
        margin-bottom: 4px;
    }
}

/* Button Ripple Effect */
#unmute-btn .circle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Toast Notifications */
#toasts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10000;
}

.toast {
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem 2rem;
    margin: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideInRight 0.3s ease-out;
    font-weight: 500;
}

.toast.success {
    color: #4CAF50;
    border-left: 4px solid #4CAF50;
}

.toast.error {
    color: #f44336;
    border-left: 4px solid #f44336;
}

.toast.info {
    color: #2196F3;
    border-left: 4px solid #2196F3;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Kinetic Loader for Progress */
.kinetic-loader {
    position: relative;
    height: 60px;
    width: 60px;
    margin: 20px auto;
}

.kinetic-loader::after,
.kinetic-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-bottom-color: #667eea;
    animation: rotateA 2s linear infinite 0.5s;
}

.kinetic-loader::before {
    transform: rotate(90deg);
    animation: rotateB 2s linear infinite;
    border-bottom-color: #764ba2;
}

@keyframes rotateA {
    0%, 25% { transform: rotate(0deg); }
    50%, 75% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateB {
    0%, 25% { transform: rotate(90deg); }
    50%, 75% { transform: rotate(270deg); }
    100% { transform: rotate(450deg); }
}

/* SEO Content Section */
.seo-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto 32px auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    width: 100%;
    max-width: 700px;
}

.seo-content h2 {
    color: #667eea;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 32px;
    letter-spacing: -0.3px;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content h3 {
    color: #764ba2;
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.seo-content p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 18px;
    font-size: 1.05em;
    font-weight: 400;
}

.seo-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.seo-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.seo-content ul li::marker {
    color: #667eea;
}

.seo-content strong {
    color: #667eea;
    font-weight: 600;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 25px;
    border-radius: 5px;
    font-size: 0.95em;
    color: #856404;
}

/* Footer Styles */
.footer {
    text-align: center;
    color: white;
    padding: 30px 20px;
    margin: 40px 0 0 0;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.footer p {
    margin: 8px 0;
    font-size: 0.95em;
    opacity: 0.9;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Mobile Responsive for SEO Content */
@media (max-width: 600px) {
    .seo-content {
        padding: 20px;
    }
    
    .seo-content h2 {
        font-size: 1.5em;
    }
    
    .seo-content h3 {
        font-size: 1.2em;
    }
    
    .seo-content p {
        font-size: 1em;
    }
    
    .info-box h2 {
        font-size: 1.1em;
    }
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 16px;
    margin: 0 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    width: 100%;
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95em;
}

.navbar a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.navbar a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.navbar a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Page Header */
.page-header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Legal Content */
.legal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.legal-content h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #764ba2;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Highlight Boxes */
.highlight-box, .warning-box {
    background: #f0f4ff;
    border-left: 5px solid #667eea;
    padding: 20px;
    margin: 25px 0;
    border-radius: 10px;
}

.warning-box {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.warning-box h2, .warning-box h3 {
    color: #856404;
    margin-top: 0;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-item h2 {
    color: #667eea;
    font-size: 1.4em;
    margin-bottom: 15px;
    margin-top: 0;
}

.faq-item p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-item ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-item .warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin-top: 15px;
    border-radius: 5px;
    color: #856404;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info, .contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.contact-method {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-method p {
    color: #555;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-method ul {
    list-style: none;
    padding-left: 0;
}

.contact-method ul li {
    padding: 5px 0;
    color: #555;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    padding: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* CTA Box */
.cta-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-box h2 {
    color: #667eea;
    margin-bottom: 15px;
}

.cta-box p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .navbar a {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h2 {
        font-size: 1.5em;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form-section {
        padding: 25px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-button {
        display: block;
        margin: 10px 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

.about-section h2 {
    color: #667eea;
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 0;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    color: #667eea;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s;
    animation: fadeInUp 0.6s ease-out both;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.8;
    color: #555;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e7ff;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-card p {
    color: #666;
    font-size: 1em;
    margin: 0;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 15px;
    margin: 10px 0;
    background: #f8f9ff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    color: #555;
    font-size: 1.1em;
}

.values-list li strong {
    color: #667eea;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    border-radius: 24px;
    padding: 48px;
    margin: 0 auto 32px auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 700px;
}

.testimonials-section h2 {
    color: #667eea;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.25s; }
.testimonial-card:nth-child(5) { animation-delay: 0.3s; }
.testimonial-card:nth-child(6) { animation-delay: 0.35s; }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #667eea;
    font-weight: 600;
    text-align: right;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumbs span {
    color: #999;
    margin: 0 8px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px;
    background: white;
    border-radius: 15px;
    margin: 0 auto 30px auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 700px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-badge-icon {
    font-size: 2.5em;
}

.trust-badge-text {
    font-size: 0.9em;
    color: #666;
    font-weight: 600;
}

/* Social Proof Bar */
.social-proof {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 0 auto 30px auto;
    animation: pulse 2s ease-in-out infinite;
    width: 100%;
    max-width: 700px;
}

.social-proof p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.social-proof span {
    font-size: 1.5em;
    font-weight: bold;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .testimonials-section {
        padding: 25px;
    }
}

/* 404 Error Page */
.error-page {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.error-icon {
    font-size: 6em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.error-page h1 {
    color: #667eea;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.error-page p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.error-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.popular-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.popular-links h3 {
    color: #667eea;
    margin-bottom: 20px;
}

.popular-links ul {
    list-style: none;
    padding: 0;
}

.popular-links ul li {
    margin: 12px 0;
}

.popular-links ul li a {
    color: #667eea;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

.popular-links ul li a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

/* Print Styles */
@media print {
    .navbar, .footer, .scroll-top, .cta-button {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    body {
        background: #000;
    }
    
    .card, .legal-content, .about-section {
        border: 2px solid #fff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Live Stats Bar */
.live-stats-bar {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    width: 100%;
    max-width: 700px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
    animation: countUp 2s ease-out;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    font-weight: 600;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Button Counter */
.btn-counter {
    display: block;
    font-size: 0.8em;
    opacity: 0.8;
    margin-top: 5px;
}

/* API Status Indicator */
.api-status {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s;
}

.api-status.offline {
    background: #f44336;
}

.api-status.loading {
    background: #FF9800;
}

/* Loading Skeleton */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    height: 1.2em;
    width: 60px;
    display: inline-block;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile Responsive for Live Stats - FIXED */
@media (max-width: 600px) {
    .live-stats-bar {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .stat-item {
        padding: 8px;
        background: #f8f9ff;
        border-radius: 6px;
        border-left: 3px solid #667eea;
    }
    
    .stat-number {
        font-size: 1.2em;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.75em;
    }
    
    /* Social Proof Fix */
    .social-proof {
        padding: 10px;
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .social-proof p {
        font-size: 0.85em;
        line-height: 1.3;
        margin: 0;
    }
    
    .social-proof span {
        font-size: 1em;
    }
    
    /* Trust Badges Fix */
    .trust-badges {
        flex-direction: column;
        gap: 8px;
        padding: 12px 8px;
        margin: 10px 0;
    }
    
    .trust-badge {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 8px;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
    }
    
    .trust-badge-icon {
        font-size: 1.5em;
        min-width: 30px;
    }
    
    .trust-badge-text {
        font-size: 0.75em;
        text-align: left;
    }
    
    /* Testimonials Mobile Fix */
    .testimonials-section {
        padding: 12px 8px;
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .testimonials-section h2 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .testimonial-card {
        padding: 12px 10px;
        border-radius: 8px;
    }
    
    .testimonial-card p {
        font-size: 0.8em;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .testimonial-author {
        font-size: 0.75em;
    }
    
    .stars {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    /* Footer Mobile Fix */
    .footer {
        padding: 15px 10px;
        margin-top: 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .footer p {
        margin: 4px 0;
        font-size: 0.75em;
        line-height: 1.3;
    }
    
    /* Progress & Result Section Fix */
    .progress-section {
        padding: 10px 0;
    }
    
    .kinetic-loader {
        height: 40px;
        width: 40px;
        margin: 10px auto;
    }
    
    .status-text {
        font-size: 0.8em;
        margin-top: 6px;
    }
    
    .result-section {
        padding: 10px 0;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 2em;
        margin-bottom: 10px;
    }
    
    .result-section h2 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .result-section p {
        font-size: 0.8em;
        margin-bottom: 8px;
    }
    
    .time-info {
        font-size: 0.9em;
        margin: 10px 0;
    }
    
    .reset-btn {
        padding: 10px 20px;
        font-size: 0.8em;
        border-radius: 6px;
    }
}
/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 25px 15px;
        margin: 15px 0;
        border-radius: 15px;
    }
    
    .testimonials-section h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .testimonial-card p {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .testimonial-author {
        font-size: 0.85em;
    }
    
    /* SEO Content Mobile */
    .seo-content {
        padding: 20px 15px;
        margin: 15px 0;
        border-radius: 12px;
    }
    
    .seo-content h2 {
        font-size: 1.4em;
        margin-bottom: 12px;
        margin-top: 15px;
    }
    
    .seo-content h2:first-child {
        margin-top: 0;
    }
    
    .seo-content h3 {
        font-size: 1.2em;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .seo-content p {
        font-size: 0.95em;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .seo-content ul {
        margin: 12px 0;
        padding-left: 20px;
    }
    
    .seo-content ul li {
        font-size: 0.9em;
        line-height: 1.5;
        margin-bottom: 6px;
    }
    
    /* Progress Section Mobile */
    .progress-section {
        padding: 15px 0;
    }
    
    .kinetic-loader {
        height: 50px;
        width: 50px;
        margin: 15px auto;
    }
    
    .status-text {
        font-size: 0.95em;
        margin-top: 8px;
    }
    
    /* Result Section Mobile */
    .result-section {
        padding: 15px 0;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    
    .result-section h2 {
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    
    .result-section p {
        font-size: 0.95em;
        margin-bottom: 12px;
    }
    
    .time-info {
        font-size: 1em;
        margin: 15px 0;
    }
    
    .reset-btn {
        padding: 12px 25px;
        font-size: 0.95em;
        border-radius: 8px;
    }
}

/* Extra Small Mobile - Ultra Compact */
@media (max-width: 480px) {
    body {
        padding: 3px;
        padding-top: 8px;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .navbar {
        padding: 6px 8px;
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .navbar a {
        padding: 6px 8px;
        font-size: 0.7em;
        min-width: 50px;
        max-width: 70px;
    }
    
    .header h1 {
        font-size: 1.2em;
        line-height: 1;
        margin-bottom: 4px;
    }
    
    .subtitle {
        font-size: 0.75em;
        margin-bottom: 10px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        margin-bottom: 6px;
    }
    
    .card {
        padding: 10px 8px;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    
    .input-section input {
        padding: 8px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    #unmute-btn {
        padding: 10px;
        font-size: 0.8em;
        min-height: 40px;
        gap: 6px;
    }
    
    #unmute-btn i {
        font-size: 1em;
    }
    
    .btn-counter {
        font-size: 0.7em;
        margin-top: 2px;
    }
    
    .info-box {
        padding: 8px 6px;
        margin-bottom: 8px;
    }
    
    .info-box h2 {
        font-size: 0.8em;
        margin-bottom: 6px;
    }
    
    .info-box li {
        font-size: 0.7em;
        padding: 2px 0;
    }
    
    .live-stats-bar {
        padding: 8px;
        gap: 6px;
        margin: 8px 0;
    }
    
    .stat-item {
        padding: 6px;
    }
    
    .stat-number {
        font-size: 1em;
    }
    
    .stat-label {
        font-size: 0.7em;
    }
    
    .social-proof {
        padding: 8px;
        margin: 8px 0;
    }
    
    .social-proof p {
        font-size: 0.75em;
    }
    
    .trust-badges {
        padding: 8px 6px;
        gap: 6px;
        margin: 8px 0;
    }
    
    .trust-badge {
        padding: 6px;
        gap: 6px;
    }
    
    .trust-badge-icon {
        font-size: 1.2em;
        min-width: 25px;
    }
    
    .trust-badge-text {
        font-size: 0.7em;
    }
    
    .testimonials-section {
        padding: 8px 6px;
        margin: 8px 0;
    }
    
    .testimonials-section h2 {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .testimonial-card {
        padding: 8px 6px;
    }
    
    .testimonial-card p {
        font-size: 0.75em;
        line-height: 1.2;
    }
    
    .testimonial-author {
        font-size: 0.7em;
    }
    
    .seo-content {
        padding: 8px 6px;
        margin: 8px 0;
    }
    
    .seo-content h2 {
        font-size: 1em;
        margin-bottom: 6px;
    }
    
    .seo-content h3 {
        font-size: 0.9em;
        margin-top: 10px;
    }
    
    .seo-content p {
        font-size: 0.75em;
        line-height: 1.3;
    }
    
    .seo-content ul li {
        font-size: 0.7em;
    }
    
    .footer {
        padding: 10px 6px;
        margin-top: 15px;
    }
    
    .footer p {
        font-size: 0.7em;
        margin: 2px 0;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        align-items: flex-start;
        padding-top: 10px;
    }
    
    .header {
        margin-bottom: 20px;
    }
    
    .header h1 {
        font-size: 1.5em;
    }
    
    .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }
    
    .card {
        margin-bottom: 10px;
    }
    
    .info-box {
        margin-bottom: 10px;
    }
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    #unmute-btn {
        min-height: 48px;
        font-size: 1em;
    }
    
    .input-section input {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .reset-btn {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .card:hover {
        transform: none;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    
    #unmute-btn:hover {
        transform: none;
        box-shadow: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .card {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .info-box {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .seo-content {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .testimonials-section {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo {
        animation: none;
    }
    
    .header h1 {
        animation: none;
    }
    
    body {
        animation: none;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        box-shadow: none;
    }
    
    .card, .info-box, .seo-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .header h1 {
        color: black;
        text-shadow: none;
    }
    
    .social-proof, .trust-badges, .testimonials-section {
        display: none;
    }
}
/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar a {
        padding: 10px 12px;
        font-size: 0.85em;
        text-align: center;
        border-radius: 6px;
        flex: 1;
        min-width: 70px;
        max-width: 90px;
    }
    
    .page-header h1 {
        font-size: 1.8em;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .page-header p {
        font-size: 1em;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .navbar a {
        padding: 8px 10px;
        font-size: 0.8em;
        min-width: 60px;
        max-width: 80px;
    }
    
    .page-header h1 {
        font-size: 1.6em;
    }
    
    .breadcrumbs {
        padding: 8px 12px;
        font-size: 0.8em;
        margin-bottom: 12px;
    }
}

/* API Status Indicator Mobile */
@media (max-width: 768px) {
    .api-status {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75em;
        border-radius: 15px;
    }
}

/* Scroll to Top Button Mobile */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }
}

/* Toast Notifications Mobile */
@media (max-width: 768px) {
    #toasts {
        bottom: 15px;
        right: 15px;
        left: 15px;
        align-items: stretch;
    }
    
    .toast {
        margin: 0.3rem 0;
        padding: 0.8rem 1.5rem;
        font-size: 0.9em;
        border-radius: 8px;
    }
}

/* Loading States Mobile */
@media (max-width: 768px) {
    .loading-skeleton {
        height: 1em;
        width: 50px;
    }
    
    .spinner {
        width: 35px;
        height: 35px;
        margin: 0 auto 15px;
    }
}

/* Form Elements Mobile Enhancement */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1em;
        border-radius: 8px;
        min-height: 48px;
    }
}

/* Error Page Mobile */
@media (max-width: 768px) {
    .error-page {
        padding: 40px 20px;
    }
    
    .error-icon {
        font-size: 4em;
        margin-bottom: 15px;
    }
    
    .error-page h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    .error-page p {
        font-size: 1em;
        margin-bottom: 12px;
    }
    
    .error-links {
        flex-direction: column;
        gap: 10px;
        margin: 30px 0;
    }
    
    .popular-links h3 {
        font-size: 1.1em;
    }
    
    .popular-links ul li a {
        font-size: 1em;
    }
}

/* Accessibility Improvements for Mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    button, .cta-button, .navbar a, input, select, textarea {
        min-height: 44px;
    }
    
    /* Better focus indicators */
    button:focus, .cta-button:focus, .navbar a:focus, input:focus, select:focus, textarea:focus {
        outline: 3px solid #667eea;
        outline-offset: 2px;
    }
    
    /* Improved text readability */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Better spacing for touch */
    .navbar a {
        margin: 2px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .logo {
        animation-duration: 4s;
    }
    
    .header h1 {
        animation-duration: 3s;
    }
    
    /* Optimize background gradients */
    body {
        background-attachment: scroll;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* PREMIUM ANIMATIONS & EFFECTS */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Button Hover Effects */
button, .cta-button, .reset-btn, .submit-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover, .cta-button:hover, .reset-btn:hover, .submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

button:active, .cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Card Hover Effects */
.card, .testimonial-card, .stat-card, .feature-card, .faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover, .testimonial-card:hover, .feature-card:hover, .faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Image Zoom on Hover */
.logo img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 15px;
}

.skeleton-card {
    height: 200px;
    border-radius: 15px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Page Transition Effect */
body {
    transition: opacity 0.3s ease-in-out;
}

/* Parallax Effect for Background */
body {
    background-attachment: fixed;
}

/* Glow Effect on Focus */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 0 20px rgba(102, 126, 234, 0.2);
    transform: scale(1.01);
}

/* Pulse Animation for Important Elements */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Bounce Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Loading Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stagger Animation for Lists */
.stagger-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}
