@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --phone-green: #25d366;
    --phone-green-dark: #128c7e;
    --phone-red: #ff3b30;
    --phone-blue: #007aff;
    --phone-purple: #af52de;
    --screen-glow: #00d4ff;
    --dark-bg: #0a0a15;
    --darker-bg: #050508;
    --card-bg: #1a1a2e;
    --signal-blue: #00bfff;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== CALL CENTER BACKGROUND ===== */
.call-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
}

/* SIGNAL WAVES */
.signal-wave {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--signal-blue);
    border-radius: 50%;
    opacity: 0;
    animation: signalPulse 4s ease-out infinite;
}

@keyframes signalPulse {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}

/* FLOATING PHONES */
.floating-phone {
    position: absolute;
    opacity: 0.1;
    animation: floatPhone 20s linear infinite;
}

@keyframes floatPhone {
    0% { top: 110%; transform: rotate(0deg) translateX(0); }
    100% { top: -10%; transform: rotate(360deg) translateX(50px); }
}

/* CONNECTION LINES */
.connection-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--signal-blue), transparent);
    animation: connectionSweep 5s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes connectionSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* CHAT BUBBLES */
.chat-bubble {
    position: absolute;
    background: var(--phone-green);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0.1;
    animation: bubbleFloat 15s ease-in-out infinite;
}

@keyframes bubbleFloat {
    0% { bottom: -50px; transform: translateX(0); opacity: 0.1; }
    50% { opacity: 0.2; }
    100% { bottom: 110%; transform: translateX(30px); opacity: 0; }
}

/* ===== NAVBAR ===== */
.call-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--phone-green);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.navbar .logo img { height: 50px; }

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navbar-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--phone-green);
    text-shadow: 0 0 15px var(--phone-green);
}

.auth-buttons { display: flex; gap: 15px; }

.btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--phone-green);
    color: var(--phone-green);
}

.btn-login:hover {
    background: var(--phone-green);
    color: var(--dark-bg);
}

.btn-register {
    background: linear-gradient(135deg, var(--phone-green) 0%, var(--phone-green-dark) 100%);
    color: var(--dark-bg);
}

/* ===== CALL HERO ===== */
.call-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 100px 20px;
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(37, 211, 102, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    z-index: 1;
}

/* BIG PHONE */
.phone-container {
    position: relative;
}

.big-phone {
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.big-phone.ringing {
    animation: phoneFloat 3s ease-in-out infinite, phoneRing 0.3s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: translateY(-5px) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.big-phone.ring-shake {
    animation: phoneShake 0.5s ease-in-out;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

.big-phone.connected {
    animation: phoneFloat 3s ease-in-out infinite;
}

.big-phone.declined {
    animation: phoneDecline 0.5s ease-in-out;
}

@keyframes phoneDecline {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.phone-body {
    width: 220px;
    height: 450px;
    background: linear-gradient(180deg, #2a2a3e 0%, #1a1a28 100%);
    border-radius: 40px;
    border: 4px solid #333;
    padding: 15px;
    position: relative;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 320px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a15 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.big-phone.connected .phone-screen {
    background: linear-gradient(180deg, #0a2e1a 0%, #0a1a0f 100%);
}

.screen-content {
    padding: 30px 20px;
    text-align: center;
}

/* CALLER AVATAR */
.caller-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--phone-green);
    animation: ringPulse 1.5s ease-out infinite;
}

.ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.ring-2 { width: 130px; height: 130px; animation-delay: 0.3s; }
.ring-3 { width: 160px; height: 160px; animation-delay: 0.6s; }

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.big-phone.connected .avatar-ring {
    animation: none;
    opacity: 0.3;
}

.avatar-icon {
    position: relative;
    z-index: 5;
    font-size: 60px;
    display: block;
    line-height: 100px;
}

.caller-info {
    margin-bottom: 20px;
}

.caller-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.caller-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.caller-status {
    display: block;
    font-size: 14px;
    color: var(--phone-green);
    animation: statusBlink 1s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.big-phone.connected .caller-status {
    animation: none;
    color: var(--phone-green);
}

.call-timer {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--phone-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.big-phone.connected .call-timer {
    opacity: 1;
}

/* PHONE BUTTONS */
.phone-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn.decline {
    background: linear-gradient(135deg, var(--phone-red) 0%, #cc0000 100%);
    color: white;
}

.call-btn.accept {
    background: linear-gradient(135deg, var(--phone-green) 0%, var(--phone-green-dark) 100%);
    color: white;
    animation: acceptPulse 1.5s ease-in-out infinite;
}

@keyframes acceptPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.big-phone.connected .call-btn.accept {
    animation: none;
}

.call-btn:hover {
    transform: scale(1.1);
}

.phone-speaker {
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 15px auto 0;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
}

/* SOUND WAVES */
.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--phone-green);
    border-radius: 50%;
    opacity: 0;
}

.wave-1 { width: 250px; height: 250px; animation: waveExpand 2s ease-out infinite; animation-delay: 0s; }
.wave-2 { width: 250px; height: 250px; animation: waveExpand 2s ease-out infinite; animation-delay: 0.4s; }
.wave-3 { width: 250px; height: 250px; animation: waveExpand 2s ease-out infinite; animation-delay: 0.8s; }
.wave-4 { width: 250px; height: 250px; animation: waveExpand 2s ease-out infinite; animation-delay: 1.2s; }
.wave-5 { width: 250px; height: 250px; animation: waveExpand 2s ease-out infinite; animation-delay: 1.6s; }

@keyframes waveExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.sound-waves.active .wave {
    border-color: var(--screen-glow);
    animation-duration: 1s;
}

/* HERO CONTENT */
.hero-content {
    text-align: center;
    max-width: 500px;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--phone-green) 0%, var(--screen-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-ring {
    display: inline-block;
    animation: ringBounce 1s ease-in-out infinite;
}

@keyframes ringBounce {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid var(--phone-green);
    margin-bottom: 40px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--phone-green);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.status-text {
    font-weight: 600;
    color: var(--phone-green);
}

.response-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

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

.stat-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--phone-green);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.contact-methods h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--phone-green);
}

.dial-pad-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--phone-green);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
}

.card-phone {
    text-align: center;
    margin-bottom: 25px;
}

.mini-phone {
    width: 80px;
    height: 140px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #444;
}

.mini-screen {
    font-size: 40px;
}

.notification-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--phone-red);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    animation: badgePulse 1s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.call-phone.ringing {
    animation: miniRing 0.3s ease-in-out infinite;
}

@keyframes miniRing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.ring-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--phone-green);
    border-radius: 50%;
    animation: ringExpand 1s ease-out infinite;
}

@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.message-fly {
    position: absolute;
    font-size: 20px;
    animation: messageFly 2s ease-in-out infinite;
}

@keyframes messageFly {
    0% { top: 50%; right: 50%; opacity: 1; transform: translate(50%, -50%); }
    100% { top: -30px; right: -30px; opacity: 0; transform: translate(0, 0); }
}

.card-info h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-info p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.card-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.card-info li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-dim);
}

.btn-connect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--phone-green) 0%, var(--phone-green-dark) 100%);
    border: none;
    border-radius: 30px;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-connect:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    font-size: 18px;
}

/* SIGNAL BARS */
.signal-bars {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.bar {
    width: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.3s;
}

.bar-1 { height: 8px; }
.bar-2 { height: 12px; }
.bar-3 { height: 16px; }
.bar-4 { height: 20px; }

.bar.active {
    background: var(--phone-green);
    box-shadow: 0 0 5px var(--phone-green);
}

/* ===== VOICE ASSISTANT ===== */
.voice-assistant {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.voice-assistant h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--phone-purple);
    margin-bottom: 10px;
}

.assistant-subtitle {
    color: var(--text-dim);
    margin-bottom: 50px;
}

.assistant-container {
    max-width: 600px;
    margin: 0 auto;
}

.voice-visualizer {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid rgba(175, 82, 222, 0.3);
    margin-bottom: 30px;
}

.visualizer-bars {
    display: flex;
    justify-content: center;
    gap: 5px;
    height: 60px;
    margin-bottom: 30px;
}

.v-bar {
    width: 8px;
    height: 20px;
    background: linear-gradient(180deg, var(--phone-purple) 0%, var(--phone-blue) 100%);
    border-radius: 4px;
    transition: height 0.1s ease;
}

.mic-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--phone-purple) 0%, #7b2cbf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.mic-button:hover {
    transform: scale(1.1);
}

.mic-button.active {
    background: var(--phone-red);
    animation: micPulse 1s ease-in-out infinite;
}

@keyframes micPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5); }
    50% { box-shadow: 0 0 0 20px rgba(255, 59, 48, 0); }
}

.mic-icon {
    font-size: 35px;
}

.mic-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--phone-purple);
    animation: pulseBorder 2s ease-out infinite;
}

.mic-button.active .mic-pulse {
    border-color: var(--phone-red);
}

@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.voice-status {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 30px;
}

.quick-questions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.quick-q {
    padding: 10px 20px;
    background: rgba(175, 82, 222, 0.1);
    border: 1px solid var(--phone-purple);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-q:hover {
    background: var(--phone-purple);
    color: white;
}

/* ===== SPEED DIAL ===== */
.speed-dial {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.speed-dial h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--screen-glow);
}

.dial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.dial-item {
    aspect-ratio: 1;
    background: var(--card-bg);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dial-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--screen-glow);
    transform: scale(1.05);
}

.dial-item.dialing {
    animation: dialPress 0.2s ease-in-out;
}

@keyframes dialPress {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); background: var(--screen-glow); }
}

.dial-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.dial-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.dial-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.dial-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s;
}

.dial-item:hover .dial-ring {
    border-color: var(--screen-glow);
    animation: dialRingPulse 0.5s ease-out;
}

@keyframes dialRingPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.dial-item.star .dial-number { color: var(--phone-red); }
.dial-item.hash .dial-number { color: var(--phone-green); }

/* ===== FAQ CALL LOG ===== */
.faq-call-log {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.faq-call-log h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--phone-green);
}

.call-log-container {
    max-width: 800px;
    margin: 0 auto;
}

.log-entry {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.log-entry:hover {
    border-color: var(--phone-green);
}

.log-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
}

.log-icon {
    font-size: 24px;
    animation: logRing 2s ease-in-out infinite;
}

@keyframes logRing {
    0%, 90%, 100% { transform: rotate(0); }
    92%, 96% { transform: rotate(-10deg); }
    94%, 98% { transform: rotate(10deg); }
}

.log-question {
    flex: 1;
    font-weight: 500;
    font-size: 15px;
}

.log-time {
    font-size: 12px;
    color: var(--phone-green);
    padding: 5px 15px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 20px;
}

.log-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.log-entry.open .log-toggle {
    background: var(--phone-green);
    color: var(--dark-bg);
}

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

.log-entry.open .log-answer {
    max-height: 400px;
    padding: 0 20px 20px;
}

.answer-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.answer-content ul {
    list-style: none;
}

.answer-content li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-dim);
}

.answer-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.helpful {
    font-size: 13px;
    color: var(--text-dim);
}

.helpful-btn {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.helpful-btn:hover {
    background: var(--phone-green);
    border-color: var(--phone-green);
}

/* ===== SUPPORT AGENTS ===== */
.support-agents {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.support-agents h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--phone-blue);
}

.agents-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 60px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.agent-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.agent-card:hover {
    border-color: var(--phone-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}

.agent-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--phone-blue) 0%, var(--phone-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--card-bg);
}

.avatar-status.online {
    background: var(--phone-green);
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(37, 211, 102, 0); }
}

.avatar-status.busy {
    background: var(--phone-red);
}

.avatar-emoji {
    font-size: 40px;
}

.agent-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.agent-role {
    display: block;
    font-size: 12px;
    color: var(--phone-blue);
    margin-bottom: 15px;
}

.agent-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-dim);
}

.agent-specialty {
    display: inline-block;
    font-size: 11px;
    padding: 5px 15px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 15px;
    color: var(--phone-blue);
}

/* ===== SUPPORT CTA ===== */
.support-cta {
    padding: 120px 20px;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(37, 211, 102, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, #000 100%);
    position: relative;
    z-index: 1;
}

.cta-phone-animation {
    margin-bottom: 40px;
}

.cta-phone {
    width: 100px;
    height: 160px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ctaPhoneFloat 3s ease-in-out infinite;
    border: 3px solid #444;
}

@keyframes ctaPhoneFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.cta-screen {
    font-size: 50px;
    animation: ctaRing 0.3s ease-in-out infinite;
}

@keyframes ctaRing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.cta-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid var(--phone-green);
    border-radius: 50%;
    animation: ctaWaveExpand 2s ease-out infinite;
}

.cta-wave:nth-child(2) { animation-delay: 0.5s; }
.cta-wave:nth-child(3) { animation-delay: 1s; }

@keyframes ctaWaveExpand {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.support-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: var(--phone-green);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-chat,
.btn-cta-email {
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
}

.btn-cta-chat {
    background: linear-gradient(135deg, var(--phone-green) 0%, var(--phone-green-dark) 100%);
    color: var(--dark-bg);
}

.btn-cta-email {
    background: transparent;
    border: 2px solid var(--screen-glow);
    color: var(--screen-glow);
}

.btn-cta-chat:hover,
.btn-cta-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-dim);
}

/* ===== FOOTER ===== */
.call-footer {
    background: #000;
    padding: 60px 20px 30px;
    border-top: 2px solid var(--phone-green);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-phone {
    font-size: 40px;
    margin-bottom: 15px;
    animation: footerRing 3s ease-in-out infinite;
}

@keyframes footerRing {
    0%, 90%, 100% { transform: rotate(0); }
    92%, 96% { transform: rotate(-15deg); }
    94%, 98% { transform: rotate(15deg); }
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-motto {
    font-size: 16px;
    color: var(--phone-green);
    margin-bottom: 20px;
    font-style: italic;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 14px;
    color: var(--text-dim);
}

.footer-copy a {
    color: var(--phone-green);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .dial-pad-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .call-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-container {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .navbar-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .response-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .dial-grid {
        max-width: 300px;
        gap: 15px;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-methods h2,
    .voice-assistant h2,
    .speed-dial h2,
    .faq-call-log h2,
    .support-agents h2,
    .support-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .phone-body {
        width: 180px;
        height: 380px;
    }
    
    .phone-screen {
        height: 260px;
    }
    
    .caller-avatar {
        width: 70px;
        height: 70px;
    }
    
    .avatar-icon {
        font-size: 40px;
        line-height: 70px;
    }
    
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-chat,
    .btn-cta-email {
        width: 100%;
        max-width: 280px;
    }
}