/* Demo Page Specific Styles */

/* Demo Hero Section */
.demo-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.demo-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.demo-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Demo Layout */
.demo-main {
    padding: 60px 0;
    background: var(--background-color);
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Control Panel (Left Column) */
.demo-control {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.demo-control h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-text);
    margin-bottom: 30px;
    text-align: center;
}

/* Demo Tabs */
.demo-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border: 2px solid rgba(30, 41, 59, 0.1);
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--body-text);
}

.demo-tab:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.demo-tab.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.demo-tab i {
    font-size: 1.5rem;
}

/* Demo Description */
.demo-description {
    margin-bottom: 30px;
}

.demo-desc {
    display: none;
    animation: fadeIn 0.5s ease;
}

.demo-desc.active {
    display: block;
}

.demo-desc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-text);
    margin-bottom: 15px;
}

.demo-desc p {
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.demo-desc ul {
    list-style: none;
    padding: 0;
}

.demo-desc li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--body-text);
}

.demo-desc li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Demo Controls */
.demo-controls {
    display: flex;
    gap: 15px;
}

.demo-controls .btn {
    flex: 1;
    justify-content: center;
}

/* Phone Display (Right Column) */
.demo-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 100px;
}

/* Realistic Phone Mockup */
.phone-mockup {
    position: relative;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 6px;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 2.5px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 1.5px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Phone Header (Status Bar) */
.phone-header {
    background: transparent;
    padding: 8px 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.phone-indicators {
    display: flex;
    gap: 5px;
}

.phone-indicators i {
    font-size: 0.8rem;
}

/* Phone Content Area */
.phone-content {
    height: 100%;
    position: relative;
    padding-top: 35px;
}

/* Demo Start Overlay */
.demo-start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.demo-start-overlay.hidden {
    display: none;
}

.demo-start-content {
    text-align: center;
    color: white;
}

.demo-start-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.demo-start-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.demo-start-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.demo-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Platform specific button colors */
.demo-start-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #F77737 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.demo-start-btn.instagram:hover {
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.demo-start-btn.voice {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.demo-start-btn.voice:hover {
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
}

.demo-start-btn i {
    font-size: 0.8rem;
}

.demo-interface {
    display: none;
    height: 100%;
    width: 100%;
    flex-direction: column;
    position: relative;
}

.demo-interface.active {
    display: flex !important;
}

/* WhatsApp Interface */
#whatsapp-interface {
    background: #0b141a;
    min-height: 100%;
}

.whatsapp-header {
    background: #075e54;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.wa-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: white;
}

.wa-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.wa-actions {
    display: flex;
    gap: 20px;
}

.wa-actions i {
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.wa-actions i:hover {
    opacity: 1;
}

.whatsapp-chat {
    flex: 1;
    padding: 20px;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(7, 94, 84, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(7, 94, 84, 0.05) 0%, transparent 50%);
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 8px;
    display: flex;
}

.chat-message.received {
    justify-content: flex-start;
}

.chat-message.sent {
    justify-content: flex-end;
}

.message-content {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 12px;
    position: relative;
}

.chat-message.received .message-content {
    background: #262d31;
    color: #e9edef;
    border-bottom-left-radius: 3px;
}

.chat-message.sent .message-content {
    background: #005c4b;
    color: white;
    border-bottom-right-radius: 3px;
}

.message-content p {
    margin: 0;
    line-height: 1.3;
    font-size: 0.85rem;
}

.message-time {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 3px;
    display: block;
    text-align: right;
}

.whatsapp-input {
    padding: 10px 15px;
    background: #202c33;
}

.wa-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2a3942;
    border-radius: 20px;
    padding: 6px 12px;
}

.wa-input-container i {
    color: #8696a0;
    cursor: pointer;
    font-size: 1.1rem;
}

.wa-input-container input {
    flex: 1;
    border: none;
    background: transparent;
    color: #e9edef;
    font-size: 0.85rem;
    outline: none;
}

.wa-input-container input::placeholder {
    color: #8696a0;
}

/* Instagram Interface */
#instagram-interface {
    background: #000;
    min-height: 100%;
}

.instagram-header {
    background: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom: 1px solid #262626;
}

.ig-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-contact i:first-child {
    font-size: 1.3rem;
    cursor: pointer;
}

.ig-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.ig-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    z-index: -1;
}

.ig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: white;
}

.ig-info span {
    font-size: 0.8rem;
    color: #8e8e8e;
}

.ig-actions {
    display: flex;
    gap: 20px;
}

.ig-actions i {
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
}

.instagram-chat {
    flex: 1;
    padding: 15px;
    background: #000;
    overflow-y: auto;
}

.instagram-input {
    padding: 10px 15px;
    background: #000;
    border-top: 1px solid #262626;
}

.ig-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #262626;
    border-radius: 25px;
    padding: 8px 15px;
}

.ig-input-container i {
    color: #8e8e8e;
    cursor: pointer;
    font-size: 1.1rem;
}

.ig-input-container input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.ig-input-container input::placeholder {
    color: #8e8e8e;
}

/* Voice Interface */
#voice-interface {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    justify-content: space-between;
    padding: 40px 30px;
}

.voice-header {
    text-align: center;
    margin-bottom: 30px;
}

.voice-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.voice-header span {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.voice-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.voice-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.voice-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Voice Animation */
.voice-animation {
    margin: 20px 0;
}

.sound-wave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.wave-bar {
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes waveAnimation {
    0%, 100% { height: 10px; }
    50% { height: 35px; }
}

.voice-transcript {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.voice-transcript p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.transcript-messages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.transcript-messages p {
    margin: 0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.transcript-messages .user-message {
    background: rgba(0, 124, 186, 0.3);
    align-self: flex-end;
    max-width: 80%;
}

.transcript-messages .assistant-message {
    background: rgba(20, 184, 166, 0.3);
    align-self: flex-start;
    max-width: 80%;
}

/* Voice Controls */
.voice-controls {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.voice-btn {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    gap: 8px;
    padding: 0 20px;
}

.voice-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.voice-btn.calling {
    border-radius: 30px;
    background: #dc3545;
    min-width: 120px;
}

.voice-btn.calling span {
    display: inline;
}

.voice-btn.decline {
    background: #ef4444;
    color: white;
}

.voice-btn.decline:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.voice-btn.answer {
    background: #10b981;
    color: white;
}

.voice-btn.answer:hover {
    background: #059669;
    transform: scale(1.1);
}

/* Demo CTA Section */
.demo-cta {
    background: var(--heading-text);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.demo-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.demo-cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.demo-cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-feature i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .demo-control {
        position: static;
        order: 2;
    }
    
    .demo-display {
        position: static;
        order: 1;
    }
}

@media (max-width: 768px) {
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .demo-hero {
        padding: 80px 0 50px;
    }
    
    .demo-hero-content h1 {
        font-size: 2rem;
    }
    
    .demo-hero-content p {
        font-size: 1.1rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .demo-control {
        padding: 30px 20px;
    }
    
    .demo-control h2 {
        font-size: 1.6rem;
    }
    
    .demo-tab {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .demo-cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .demo-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .demo-hero {
        padding: 70px 0 40px;
    }
    
    .demo-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .demo-main {
        padding: 50px 0;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .demo-tabs {
        gap: 10px;
    }
    
    .demo-tab {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .demo-tab i {
        font-size: 1.2rem;
    }
    
    .voice-controls {
        gap: 40px;
    }
    
    .voice-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Voice Demo Arayüz Stilleri */
.voice-demo-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.voice-demo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.voice-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    font-weight: 500;
}

.voice-avatar {
    z-index: 1;
    position: relative;
    margin-bottom: 15px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-circle.listening {
    animation: voicePulse 1.5s infinite;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

@keyframes voicePulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4), 0 0 0 20px rgba(239, 68, 68, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

#voice-icon {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.voice-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    z-index: 1;
    position: relative;
}

.voice-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    z-index: 1;
    position: relative;
}

.voice-button {
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
    position: relative;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.voice-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.voice-button:active {
    transform: translateY(0);
}

.voice-button.listening {
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
}

.voice-transcript {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-height: 60px;
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.4;
    z-index: 1;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.voice-transcript.active {
    display: block;
}

.voice-transcript .user-speech {
    color: #14B8A6;
    font-weight: 500;
}

.voice-transcript .ai-response {
    color: #F59E0B;
    font-weight: 500;
    margin-top: 8px;
} 

/* Voice Demo Yeni Arayüz Stilleri */
.voice-demo-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.voice-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.voice-avatar {
    margin-bottom: 15px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.avatar-circle.listening {
    animation: voicePulse 1.5s infinite;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
}

@keyframes voicePulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4), 0 0 0 20px rgba(239, 68, 68, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4), 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

#voice-icon {
    font-size: 2.5rem;
    color: white;
}

.voice-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.voice-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.voice-button {
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.voice-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.voice-button.listening {
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
}

/* Konuşma Animasyonu */
.voice-animation {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.wave {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #14B8A6, #06B6D4);
    border-radius: 2px;
    animation: soundWave 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.3s; }
.wave:nth-child(5) { animation-delay: 0.4s; }

@keyframes soundWave {
    0%, 100% { 
        height: 20px; 
        background: linear-gradient(to top, #14B8A6, #06B6D4);
    }
    50% { 
        height: 40px; 
        background: linear-gradient(to top, #EF4444, #F59E0B);
    }
}

.conversation-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Vapi iframe stillerini özelleştir */
.vapi-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Vapi'nin kendi butonunu gizle */
.vapi-wrapper iframe {
    filter: blur(0px);
}

/* Vapi iframe'ini özelleştir - sadece fonksiyonellik için */
.vapi-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
} 

/* Android mockup for demo page */
.demo-display { display:flex; justify-content:center; align-items:center; }

.android-phone { position:relative; transform: scale(0.95); transform-origin:center; }
.android-phone:hover { transform: scale(0.98); }
.android-frame { width:100%; height:100%; background:#1a1a1a; border-radius:20px; padding:8px; box-shadow:0 20px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1) }
.android-screen { width:100%; height:100%; background:#fff; border-radius:12px; overflow:hidden; position:relative }

/* Demo phone size to match index */
.android-phone.phone-center { width:260px; height:540px }

/* Reuse chat area spacing */
.phone-content { height:100%; display:flex; flex-direction:column }

/* keep existing demo interfaces full height */
.demo-interface { height:100%; display:none }
.demo-interface.active { display:block }

/* WhatsApp header/colors to match index */
.whatsapp-header { background:#075e54; color:#fff; padding:10px }
.whatsapp-chat { flex:1; background:#e5ddd5; overflow:auto; padding:10px; background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAATklEQVQoU2NkYGD4z8DAwMiABpgYGBgYkRVhE0MXQ1dISEhISEgIXSEuMXQFhISEhIRwKcQmhi6GrhCXGLoYukJcYuhi6ApxiaGLoSsEALPtCqtfm9NVAAAAAElFTkSuQmCC') }
.whatsapp-input { background:#fff; border-top:1px solid #e5e7eb; padding:8px }
.wa-input-container { display:flex; align-items:center; gap:10px; background:#fff }

/* Instagram to match index */
.instagram-header { background:#fff; border-bottom:1px solid #dbdbdb; padding:10px }
.instagram-chat { flex:1; background:#fafafa; overflow:auto; padding:10px }
.instagram-input { background:#fff; border-top:1px solid #dbdbdb; padding:10px } 

/* Status bar details */
.android-status-bar{position:absolute; top:0; left:0; right:0; height:26px; display:flex; align-items:center; justify-content:space-between; padding:0 10px; font-size:11px; color:#333; background:rgba(255,255,255,.6); backdrop-filter:saturate(130%) blur(4px)}
.android-time{font-weight:600}
.android-icons{display:flex; align-items:center; gap:6px}
.android-battery{font-weight:600}

/* push content below status bar */
.phone-content{padding-top:26px} 