/* WhatsApp Virtual Number Page Styles */

@font-face {
    font-family: 'Eurostile';
    src: url('/fonts/Eurostile.ttf') format('truetype');
}
@font-face {
    font-family: 'Eurostile Bold';
    src: url('/fonts/Eurostile-Bold Regular.ttf') format('truetype');
}

:root {
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --whatsapp-light: #DCF8C6;
    --accent-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(31, 31, 31, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Eurostile', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(37, 211, 102, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(18, 140, 126, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 70%),
        var(--dark-bg);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.shape:nth-child(2) { width: 300px; height: 300px; top: 50%; right: -100px; animation-delay: -5s; }
.shape:nth-child(3) { width: 200px; height: 200px; bottom: 10%; left: 20%; animation-delay: -10s; }
.shape:nth-child(4) { width: 150px; height: 150px; top: 30%; left: 60%; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(3deg); }
}

/* Enhanced Hero Section */
.hero-enhanced {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9em;
    color: var(--whatsapp-green);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '✓';
    background: var(--whatsapp-green);
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: bold;
}

.hero-title {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: clamp(2.5em, 5vw, 4em);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #25D366 50%, #128C7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 2.5em;
    color: var(--whatsapp-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* WhatsApp Verify Screen */
.whatsapp-verify {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.wa-status-bar {
    background: #075E54;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7em;
    color: #fff;
}

.wa-header {
    background: #075E54;
    padding: 12px 16px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wa-back {
    color: #fff;
    font-size: 1.2em;
}

.wa-header-title {
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
}

.wa-verify-content {
    flex: 1;
    padding: 100px 24px 30px;
    text-align: center;
}

.wa-verify-title {
    font-size: 1.1em;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 500;
}

.wa-verify-subtitle {
    font-size: 0.85em;
    color: #667781;
    line-height: 1.4;
    margin-bottom: 30px;
}

.wa-phone-number {
    color: #075E54;
    font-weight: 600;
}

.wa-code-input {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.wa-code-box {
    width: 38px;
    height: 48px;
    border: none;
    border-bottom: 2px solid #25D366;
    font-size: 1.5em;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
    background: transparent;
    animation: blink 1s infinite;
}

.wa-code-box.filled {
    animation: none;
    border-bottom-color: #25D366;
}

@keyframes blink {
    0%, 50% { border-bottom-color: #25D366; }
    51%, 100% { border-bottom-color: #ccc; }
}

.wa-resend {
    font-size: 0.8em;
    color: #667781;
}

.wa-resend-link {
    color: #075E54;
    text-decoration: none;
}

.wa-success {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #25D366;
    font-weight: 600;
    font-size: 1em;
    animation: fadeIn 0.5s ease-out 2s both;
}

.wa-success-icon {
    width: 24px;
    height: 24px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* wNum Notification */
.wnum-notification {
    position: absolute;
    top: 12px;
    left: 10px;
    right: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: slideDown 0.5s ease-out 1s both, glow 2s ease-in-out infinite 1.5s;
    z-index: 10;
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-100%); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
    50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3); }
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.notif-app {
    font-size: 0.75em;
    color: #25D366;
    font-weight: 600;
}

.notif-time {
    font-size: 0.65em;
    color: rgba(255,255,255,0.5);
}

.notif-title {
    font-size: 0.85em;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.notif-code {
    font-size: 1.4em;
    color: #25D366;
    font-weight: bold;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
}

.glow-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px solid var(--whatsapp-green);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-ring 3s infinite;
}

.glow-ring:nth-child(2) { animation-delay: 1s; width: 400px; height: 400px; }
.glow-ring:nth-child(3) { animation-delay: 2s; width: 450px; height: 450px; }

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

/* Trust Indicators */
.trust-section {
    padding: 60px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 2em;
}

.trust-text {
    font-size: 1em;
}

.trust-text strong {
    color: var(--text-primary);
    display: block;
}

/* How It Works - Enhanced */
.process-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    color: var(--whatsapp-green);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: clamp(2em, 4vw, 3em);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 1.5em;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.step-icon {
    font-size: 3em;
    margin-bottom: 20px;
    margin-top: 20px;
}

.step-title {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 1.3em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Grid */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.03) 50%, transparent 100%);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 24px;
}

.feature-title {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 1.4em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Country Coverage */
.countries-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.country-tag {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95em;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-tag:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: var(--whatsapp-green);
    transform: translateY(-2px);
}

/* Use Cases */
.use-cases-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.02) 0%, transparent 100%);
}

.use-cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.use-case-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: scale(1.02);
    border-color: rgba(37, 211, 102, 0.2);
}

.use-case-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.use-case-title {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 1.2em;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.use-case-desc {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(37, 211, 102, 0.2);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 1.1em;
    color: var(--text-primary);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whatsapp-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Reviews Enhanced */
.reviews-section-enhanced {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.05) 50%, transparent 100%);
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.03;
}

.cta-title {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: clamp(1.8em, 4vw, 2.5em);
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Footer Enhanced */
.footer-enhanced {
    padding: 60px 20px 30px;
    background: var(--card-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Eurostile Bold', sans-serif;
    font-size: 1.5em;
    color: var(--whatsapp-green);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Eurostile Bold', sans-serif;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--whatsapp-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .trust-container {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

